我在书中练习了一次考试(webbot、sspider、sscreen 和 scrapers),但它并不顺利。
结果是: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_handler()吗?