错误处理 函数 业 ,精于勤 荒于嬉.
- 错误处理 函数 预定义常量
-
发表日期:2021-07-01 10:18:48 | 来源: | 分类:错误处理 函数
-
预定义常量
下列常量作为 PHP 核心的一部分总是可用的。
注意: 你可以使用它们在中的常量名称; 但是在 PHP 之外,例如在之中, 你必须使用二进制位掩码来代替。
错误和日志记录 值 常量 说明 备注 1 E_ERROR
(int)致命的运行时错误。这类错误一般是不可恢复的情况,例如内存分配导致的问题。后果是导致脚本终止不再继续运行。 2 E_WARNING
(int)运行时警告 (非致命错误)。仅给出提示信息,但是脚本不会终止运行。 4 E_PARSE
(int)编译时语法解析错误。解析错误仅仅由分析器产生。 8 E_NOTICE
(int)运行时通知。表示脚本遇到可能会表现为错误的情况,但是在可以正常运行的脚本里面也可能会有类似的通知。 16 E_CORE_ERROR
(int)在 PHP 初始化启动过程中发生的致命错误。该错误类似 E_ERROR
,但是是由 PHP 引擎核心产生的。32 E_CORE_WARNING
(int)PHP 初始化启动过程中发生的警告 (非致命错误) 。类似 E_WARNING
,但是是由 PHP 引擎核心产生的。64 E_COMPILE_ERROR
(int)致命编译时错误。类似 E_ERROR
,但是是由 Zend 脚本引擎产生的。128 E_COMPILE_WARNING
(int)编译时警告 (非致命错误)。类似 E_WARNING
,但是是由 Zend 脚本引擎产生的。256 E_USER_ERROR
(int)用户产生的错误信息。类似 E_ERROR
,但是是由用户自己在代码中使用 PHP 函数 trigger_error()来产生的。512 E_USER_WARNING
(int)用户产生的警告信息。类似 E_WARNING
,但是是由用户自己在代码中使用 PHP 函数 trigger_error()来产生的。1024 E_USER_NOTICE
(int)用户产生的通知信息。类似 E_NOTICE
,但是是由用户自己在代码中使用 PHP 函数 trigger_error()来产生的。2048 E_STRICT
(int)启用 PHP 对代码的修改建议,以确保代码具有最佳的互操作性和向前兼容性。 PHP 5.4.0 之前的版本中不包含 E_ALL
4096 E_RECOVERABLE_ERROR
(int)可被捕捉的致命错误。 它表示发生了一个可能非常危险的错误,但是还没有导致PHP引擎处于不稳定的状态。 如果该错误没有被用户自定义句柄捕获 (参见 set_error_handler()),将成为一个 E_ERROR
从而脚本会终止运行。自 PHP 5.2.0 起 8192 E_DEPRECATED
(int)运行时通知。启用后将会对在未来版本中可能无法正常工作的代码给出警告。 自 PHP 5.3.0 起 16384 E_USER_DEPRECATED
(int)用户产生的警告信息。 类似 E_DEPRECATED
, 但是是由用户自己在代码中使用PHP函数 trigger_error()来产生的。自 PHP 5.3.0 起 32767 E_ALL
(int)PHP 5.4.0 之前为 E_STRICT
除外的所有错误和警告信息。PHP 5.4.x 中为 32767, PHP 5.3.x 中为 30719, PHP 5.2.x 中为 6143, 更早之前的 PHP 版本中为 2047。 上面的值(数值或者符号)用于建立一个二进制位掩码,来制定要报告的错误信息。
可以使用 按位运算符 来组合这些值或者屏蔽某些类型的错误。请注意,在之中,只有'|', '~', '!', '^' 和 '&' 会正确解析。
- 错误处理 函数 debug_backtrace 产生一条回溯跟踪(backtrace)
-
发表日期:2021-07-01 08:54:56 | 来源: | 分类:错误处理 函数
-
示例1
<?php // filename: /tmp/a.phpfunction a_test($str){ echo "\nHi: $str"; var_dump(debug_backtrace()); } a_test('friend'); ?><?php// filename: /tmp/b.phpinclude_once '/tmp/a.php'; ?>
- 错误处理 函数 debug_print_backtrace 打印一条回溯。
-
发表日期:2021-07-01 08:54:55 | 来源: | 分类:错误处理 函数
-
示例1
<?php // include.php filefunction a() { b(); } function b() { c(); } function c(){ debug_print_backtrace(); } a(); ?>
示例2
<?php // 文件 test.php// 这是你应该运行的文件include 'include.php'; ?>
- 错误处理 函数 error_clear_last 清除最近一次错误
-
发表日期:2021-07-01 08:54:55 | 来源: | 分类:错误处理 函数
-
示例1
<?php var_dump(error_get_last()); error_clear_last(); var_dump(error_get_last()); @$a = $b; var_dump(error_get_last()); error_clear_last(); var_dump(error_get_last()); ?>
- 错误处理 函数 error_get_last 获取最后发生的错误
-
发表日期:2021-07-01 08:54:55 | 来源: | 分类:错误处理 函数
-
示例1
<?php echo $a; print_r(error_get_last()); ?>
- 错误处理 函数 error_log 发送错误信息到某个地方
-
发表日期:2021-07-01 08:54:56 | 来源: | 分类:错误处理 函数
-
示例1
<?php // 如果无法连接到数据库,发送通知到服务器日志if (!Ora_Logon($username, $password)) { error_log("Oracle database not available!", 0); } // 如果用尽了 FOO,通过邮件通知管理员if (!($foo = allocate_new_foo())) { error_log("Big trouble, we're all out of FOOs!", 1, "operator@example.com"); } // 调用 error_log() 的另一种方式:error_log("You messed up!", 3, "/var/tmp/my-errors.log"); ?>
- 错误处理 函数 error_reporting 设置应该报告何种 PHP 错误
-
发表日期:2021-07-01 08:54:56 | 来源: | 分类:错误处理 函数
-
示例1
<?php // 关闭所有PHP错误报告error_reporting(0); // Report simple running errorserror_reporting(E_ERROR | E_WARNING | E_PARSE); // 报告 E_NOTICE也挺好 (报告未初始化的变量// 或者捕获变量名的错误拼写)error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE); // 除了 E_NOTICE,报告其他所有错误error_reporting(E_ALL ^ E_NOTICE); // 报告所有 PHP 错误 (参见 changelog)error_reporting(E_ALL); // 报告所有 PHP 错误error_reporting(-1); // 和 error_reporting(E_ALL); 一样ini_set('error_reporting', E_ALL); ?>
- 错误处理 函数 restore_error_handler 还原之前的错误处理函数
-
发表日期:2021-07-01 08:54:56 | 来源: | 分类:错误处理 函数
-
示例1
<?php function unserialize_handler($errno, $errstr){ echo "Invalid serialized value.\n"; } $serialized = 'foo'; set_error_handler('unserialize_handler'); $original = unserialize($serialized); restore_error_handler(); ?>
- 错误处理 函数 restore_exception_handler 恢复之前定义过的异常处理函数。
-
发表日期:2021-07-01 08:54:56 | 来源: | 分类:错误处理 函数
-
示例1
<?php function exception_handler_1(Exception $e) { echo '[' . __FUNCTION__ . '] ' . $e->getMessage(); } function exception_handler_2(Exception $e) { echo '[' . __FUNCTION__ . '] ' . $e->getMessage(); } set_exception_handler('exception_handler_1'); set_exception_handler('exception_handler_2'); restore_exception_handler(); throw new Exception('This triggers the first exception handler...'); ?>
- 错误处理 函数 set_error_handler 设置用户自定义的错误处理函数
-
发表日期:2021-07-01 08:54:56 | 来源: | 分类:错误处理 函数
-
示例1
<?php // error handler functionfunction 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 handlingfunction 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 itemecho "vector a\n"; $a = array(2, 3, "foo", 5.5, 43.3, 21.11); print_r($a); // now generate second arrayecho "----\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 arrayecho "----\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 undefinedecho "----\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?>
- 错误处理 函数 set_exception_handler 设置用户自定义的异常处理函数
-
发表日期:2021-07-01 08:54:56 | 来源: | 分类:错误处理 函数
-
示例1
<?php function exception_handler($exception) { echo "Uncaught exception: " , $exception->getMessage(), "\n"; } set_exception_handler('exception_handler'); throw new Exception('Uncaught Exception'); echo "Not Executed\n"; ?>
- 错误处理 函数 trigger_error 产生一个用户级别的 error/warning/notice 信息
-
发表日期:2021-07-01 08:54:56 | 来源: | 分类:错误处理 函数
-
示例1
<?php if ($divisor == 0) { trigger_error("Cannot divide by zero", E_USER_ERROR); } ?>
- 错误处理 函数 user_error trigger_error() 的别名
-
发表日期:2021-07-01 08:54:56 | 来源: | 分类:错误处理 函数
-
说明
此函数是该函数的别名: trigger_error().
- PHP杂项(34)
- PHP基础-李炎恢系列课程(20)
- 中文函数手册(0)
- 错误处理 函数(13)
- OPcache 函数(6)
- PHP 选项/信息 函数(54)
- Zip 函数(10)
- Hash 函数(15)
- OpenSSL 函数(63)
- Date/Time 函数(51)
- 目录函数(9)
- Fileinfo 函数(6)
- iconv 函数(11)
- 文件系统函数(81)
- 多字节字符串 函数(57)
- GD 和图像处理 函数(114)
- 可交换图像信息(5)
- Math 函数(50)
- 程序执行函数(11)
- PCNTL 函数(23)
- JSON 函数(4)
- SPL 函数(15)
- URL 函数(10)
- cURL 函数(32)
- 网络 函数(33)
- FTP 函数(36)
- Session 函数(23)
- PCRE 函数(11)
- PCRE 正则语法(19)
- 数组 函数(81)
- 类/对象 函数(18)
- 函数处理 函数(13)
- 变量处理 函数(37)
- SimpleXML 函数(3)
- 杂项 函数(31)
- 字符串 函数(101)