我在本書中練習考試(webbot,sspider,sscreen和scrapers),但它並不順利。error_handler()或set_error_handler()
結果是:Warning: set_error_handler() expects the argument (BAD RESULT0) to be a valid callback
<?php
include("LIB/LIB_http.php");
$page = http_get($target="http://123blablabla",$ref="");
if($page['STATUS']['http_code']!="200")
set_error_handler("BAD RESULT".$page['STATUS']['http_code']);
?>
有人能幫助我如何使用error_handler()或的set_error_han dler()?
你瞭解之前的錯誤處理? ofcourse set_error_handler期望你提供一個函數,而不是一個字符串 –
你讀過http://php.net/manual/en/function.set-error-handler.php – Mchl