assert進行程序調試

assert這個函數在php語言中是用來判斷一個表達式是否成立。返回true or false;
例如
<?php
$s = 123;
assert("is_int($s)");
?>

從這個例子能夠看到字符串參數會被執行,這跟eval()相似。不過eval($code_str)只是執行符合php編碼規範的$code_str。
assert的用法卻更詳細一點。

assert_option()能夠用來對assert()進行一些約束和控制;
默認值
ASSERT_ACTIVE=1 //Assert函數的開關
ASSERT_WARNING =1 //當表達式爲false時,是否要輸出警告性的錯誤提示,issue a PHP warning for each failed assertion
ASSERT_BAIL= 0 //是否要停止運行;terminate execution on failed assertions
ASSERT_QUIET_EVAL= 0 //是否關閉錯誤提示,在執行表達式時;disable error_reporting during assertion expression evaluation  
ASSERT_CALLBACK= (NULL) // 是否啓動回調函數 user function to call on failed assertions

若是按照默認值來,在程序的運行過程當中調用assert()來進行判斷表達式,遇到false時程序也是會繼續執行的,這在生產環境中這樣使用是很差的,而 在開發調試環境中,倒是一種debug的不錯的方式。特別是用上callback的方法,能夠知道具體的出錯信息。例如


<?php
// Active assert and make it quiet
assert_options(ASSERT_ACTIVE, 1);
assert_options(ASSERT_WARNING, 0);
assert_options(ASSERT_QUIET_EVAL, 1);

// Create a handler function
function my_assert_handler($file, $line, $code)
{
    echo "<hr>Assertion Failed:File '$file'<br />Line '$line'<br />Code '$code'<br /><hr />";
}

// Set up the callback
assert_options(ASSERT_CALLBACK, 'my_assert_handler');

// Make an assertion that should fail
assert('mysql_query("")');
?>


因此,php的官方文檔裏頭是建議將assert用來進行debug,咱們能夠發現還有一個開關ASSERT_ACTIVE能夠用來控制是否開啓debug。

例如
<?php
function fo(){
  $fp = fopen("c:/test.php",'w');
  fwrite($fp,"123");
  fclose($fp);
  return true;
}
assert("fo()");
?>php

相關文章
相關標籤/搜索