0

正如问题所暗示的,我想在 php 脚本中断时显示错误消息。认为

$var = somefunction();

如果某个函数的代码破坏了脚本,那么我想返回一条自定义消息。喜欢

if($var <> true)
   //error message here

还有一个超时功能可以检测最大执行时间并显示错误消息吗?

4

2 回答 2

0

你需要使用set_error_handler,我认为你需要debug_backtrace函数在你的错误处理函数中使用它

您可以在此处阅读更多信息:http: //php.net/manual/ru/function.set-error-handler.phphttp://php.net/manual/en/function.debug-backtrace.php

如果您只想触发错误,请使用:trigger_error();

于 2013-06-22T13:20:34.607 回答
0

这个PHP 错误处理程序怎么样?

于 2013-06-22T13:22:33.660 回答