如何从包含脚本中捕获编译错误?

时间:2013-09-17 16:29:50

标签: php exception-handling ob-start ob-get-contents

我想在函数中包含一个文件并使用ob_start()ob_get_contents()等将输出保存到文件中。

但如果包含的文件中有错误,我想:

  1. 我的功能是知道并捕获它(所以它可以优雅地处理它)

  2. 不输出错误

  3. set_error_handler会允许吗?

1 个答案:

答案 0 :(得分:0)

对于(大多数)非致命因素,是的,set_error_handler可以抓住这些,你可以优雅地处理它们。

对于致命错误,请查看此问题的答案:PHP : Custom error handler - handling parse & fatal errors

现在,如果您对防止简单的解析错误感兴趣,那么如果您能够为PHP安装安装扩展,则可以使用runkit扩展的runkit_lint_file。 [附录编辑:也就是说,在包含它之前提取文件。解析错误无法恢复。这也可以通过使用-l选项在命令行上运行php来完成。虽然取决于主机的设置方式,但您可能需要修改命令行php选项的环境才能工作。]

这是一个使用命令行php的示例,我不确定它是否是一个很好的例子。从我的一个项目中删除了一些评论。

/**
 * Lint and and retrieve the result of a file. (If lint is possible)
 * @param $file
 * @return Mixed bool false on error, string on success.
 */
function lint_and_include ($file) {
   if(is_readable($file)) {
      //Unset everything except PATH.
      //I do this to prevent CGI execution if we call
      //a CGI version of PHP.
      //Someone tell me if this is overkill please.
      foreach($_ENV as $key=>$value)
      {
         if($key == "PATH") { continue; }
         putenv($key);
      }
      $sfile = escapeshellarg($file);
      $output = $ret = NULL;
      //You could modify this to call mandatory includes to 
      //also catch stuff like redefined functions and the like.
      //As it is here, it'll only catch syntax errors.
      //You might also want to point it to the CLI php executable.
      exec("php -l $sfile", $output, $return);
      if($return == 0) {
         //Lint Okay
         ob_start();
         include $file;
         return ob_get_clean();
      }
      else {
         return false;
      }
   }
   else {
      return false;
   }
}

附加说明:在这种情况下,您的set_error_handler回调应该记录它可以捕获的错误而不是输出它们。如果任何包含的代码可能抛出异常,您可能希望使用try-catch块捕获它们。