W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
(PHP 4 >= 4.0.1, PHP 5, PHP 7, PHP 8)
set_error_handler — 設(shè)置用戶自定義的錯(cuò)誤處理函數(shù)
set_error_handler(?callable $callback, int $error_levels = E_ALL): ?callable
設(shè)置用戶的函數(shù) (callback) 來處理腳本中出現(xiàn)的錯(cuò)誤。
本函數(shù)可用于在運(yùn)行時(shí)定義自定義錯(cuò)誤處理程序,例如,在應(yīng)用程序中發(fā)生嚴(yán)重錯(cuò)誤,或者在特定條件下觸發(fā)了錯(cuò)誤(使用 trigger_error()),應(yīng)用程序需要執(zhí)行文件/數(shù)據(jù)清理。
重要的是要記住 error_levels 里指定的錯(cuò)誤類型都會(huì)繞過 PHP 標(biāo)準(zhǔn)錯(cuò)誤處理程序, 除非回調(diào)函數(shù)返回了 false。 error_reporting() 設(shè)置將不會(huì)起到作用而繼續(xù)會(huì)調(diào)用錯(cuò)誤處理函數(shù) —— 不過仍然可以獲取 error_reporting 的當(dāng)前值,并做適當(dāng)處理。
同時(shí)注意,處理程序有責(zé)任在必要時(shí)使用 exit() 停止腳本執(zhí)行。 如果錯(cuò)誤處理程序返回了,腳本將會(huì)在發(fā)生錯(cuò)誤的后一行繼續(xù)執(zhí)行。
以下級(jí)別的錯(cuò)誤不能由用戶定義的函數(shù)來處理,獨(dú)立于發(fā)生錯(cuò)誤的地方: E_ERROR、 E_PARSE、 E_CORE_ERROR、 E_CORE_WARNING、 E_COMPILE_ERROR、 E_COMPILE_WARNING,和在 調(diào)用 set_error_handler() 函數(shù)所在文件中產(chǎn)生的大多數(shù) E_STRICT。
如果錯(cuò)誤發(fā)生在腳本執(zhí)行之前(比如文件上傳時(shí)),將不會(huì) 調(diào)用自定義的錯(cuò)誤處理程序因?yàn)樗形丛谀菚r(shí)注冊(cè)。
callback
如果傳遞 null
,則處理程序重置為默認(rèn)狀態(tài)。否則,處理程序是具有以下簽名的回調(diào)。
handler(
int $errno,
string $errstr,
string $errfile = ?,
int $errline = ?,
array $errcontext = ?
): bool
errno
errno
,將會(huì)以 int 形式傳遞錯(cuò)誤的級(jí)別。errstr
errstr
,將會(huì)以 string 形式傳遞錯(cuò)誤的信息。errfile
errfile
,將會(huì)以 string 形式傳遞錯(cuò)誤的文件名。errline
errline
,將會(huì)以 int 形式傳遞錯(cuò)誤發(fā)生的行號(hào)。errcontext
errcontext
將會(huì)傳遞數(shù)組,該數(shù)組指向錯(cuò)誤發(fā)生時(shí)活動(dòng)符號(hào)表。也就是說,errcontext
會(huì)包含錯(cuò)誤觸發(fā)處作用域內(nèi)所有變量的數(shù)組。用戶的錯(cuò)誤處理程序不應(yīng)該修改錯(cuò)誤上下文(context)。
警告
此參數(shù)自 PHP 7.2.0 后棄用并自 PHP 8.0.0 移除。如果函數(shù)沒有為該參數(shù)定義默認(rèn)值,那么在調(diào)用時(shí)會(huì)出現(xiàn)“too few arguments”的錯(cuò)誤。
如果函數(shù)返回 false
,標(biāo)準(zhǔn)錯(cuò)誤處理處理程序?qū)?huì)繼續(xù)調(diào)用。
error_levels
就像 error_reporting 的 ini 設(shè)置能夠控制錯(cuò)誤的顯示一樣,此參數(shù)能夠用于屏蔽 callback
的觸發(fā)。如果沒有該掩碼,無論 error_reporting 是如何設(shè)置的,callback
都會(huì)在每個(gè)錯(cuò)誤發(fā)生時(shí)被調(diào)用。
如果之前定義的錯(cuò)誤處理程序(如果有)。如果是內(nèi)置的錯(cuò)誤處理程序,則返回 null。如果之前的錯(cuò)誤處理程序是一個(gè)類的方法,此函數(shù)會(huì)返回帶類和方法名的索引數(shù)組。
版本 | 說明 |
---|---|
8.0.0 | 刪除 errcontext 并不再傳遞給用戶回調(diào)。 |
7.2.0 | errcontext 被廢棄。使用此參數(shù)時(shí)會(huì)導(dǎo)致 E_DEPRECATED 提醒。 |
示例 #1 用 set_error_handler() 和 trigger_error() 進(jìn)行錯(cuò)誤處理
以下示例展示了通過觸發(fā)錯(cuò)誤并以用戶自定義的程序來進(jìn)行內(nèi)部異常的處理。
<?php
// error handler function
function myErrorHandler($errno, $errstr, $errfile, $errline)
{
if (!(error_reporting() & $errno)) {
// This error code is not included in error_reporting, so let it fall
// through to the standard PHP error handler
return false;
}
// $errstr may need to be escaped:
$errstr = htmlspecialchars($errstr);
switch ($errno) {
case E_USER_ERROR:
echo "<b>My ERROR</b> [$errno] $errstr<br />\n";
echo " Fatal error on line $errline in file $errfile";
echo ", PHP " . PHP_VERSION . " (" . PHP_OS . ")<br />\n";
echo "Aborting...<br />\n";
exit(1);
case E_USER_WARNING:
echo "<b>My WARNING</b> [$errno] $errstr<br />\n";
break;
case E_USER_NOTICE:
echo "<b>My NOTICE</b> [$errno] $errstr<br />\n";
break;
default:
echo "Unknown error type: [$errno] $errstr<br />\n";
break;
}
/* Don't execute PHP internal error handler */
return true;
}
// function to test the error handling
function scale_by_log($vect, $scale)
{
if (!is_numeric($scale) || $scale <= 0) {
trigger_error("log(x) for x <= 0 is undefined, you used: scale = $scale", E_USER_ERROR);
}
if (!is_array($vect)) {
trigger_error("Incorrect input vector, array of values expected", E_USER_WARNING);
return null;
}
$temp = array();
foreach($vect as $pos => $value) {
if (!is_numeric($value)) {
trigger_error("Value at position $pos is not a number, using 0 (zero)", E_USER_NOTICE);
$value = 0;
}
$temp[$pos] = log($scale) * $value;
}
return $temp;
}
// set to the user defined error handler
$old_error_handler = set_error_handler("myErrorHandler");
// trigger some errors, first define a mixed array with a non-numeric item
echo "vector a\n";
$a = array(2, 3, "foo", 5.5, 43.3, 21.11);
print_r($a);
// now generate second array
echo "----\nvector b - a notice (b = log(PI) * a)\n";
/* Value at position $pos is not a number, using 0 (zero) */
$b = scale_by_log($a, M_PI);
print_r($b);
// this is trouble, we pass a string instead of an array
echo "----\nvector c - a warning\n";
/* Incorrect input vector, array of values expected */
$c = scale_by_log("not array", 2.3);
var_dump($c); // NULL
// this is a critical error, log of zero or negative number is undefined
echo "----\nvector d - fatal error\n";
/* log(x) for x <= 0 is undefined, you used: scale = $scale" */
$d = scale_by_log($a, -2.5);
var_dump($d); // Never reached
?>
以上示例的輸出類似于:
vector a
Array
(
[0] => 2
[1] => 3
[2] => foo
[3] => 5.5
[4] => 43.3
[5] => 21.11
)
----
vector b - a notice (b = log(PI) * a)
<b>My NOTICE</b> [1024] Value at position 2 is not a number, using 0 (zero)<br />
Array
(
[0] => 2.2894597716988
[1] => 3.4341896575482
[2] => 0
[3] => 6.2960143721717
[4] => 49.566804057279
[5] => 24.165247890281
)
----
vector c - a warning
<b>My WARNING</b> [512] Incorrect input vector, array of values expected<br />
NULL
----
vector d - fatal error
<b>My ERROR</b> [256] log(x) for x <= 0 is undefined, you used: scale = -2.5<br />
Fatal error on line 35 in file trigger_error.php, PHP 5.2.1 (FreeBSD)<br />
Aborting...<br />
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: