如何在PHP类型提示中捕获“可捕获的致命错误”?


96

我正在尝试在我的一个课程中实现PHP5的类型提示,

class ClassA {
    public function method_a (ClassB $b)
    {}
}

class ClassB {}
class ClassWrong{}

正确用法:

$a = new ClassA;
$a->method_a(new ClassB);

产生错误:

$a = new ClassA;
$a->method_a(new ClassWrong);

可捕获的致命错误:传递给ClassA :: method_a()的参数1必须是ClassB的实例,给定ClassWrong的实例...

是否有可能捕获到该错误(因为它说“可捕获”)?如果是的话,如何?


4
供将来参考:引擎中的异常(对于PHP 7) -从PHP 7开始,可能会捕获致命错误。这也是在这里讨论“开捕致命错误”E_RECOVERABLE_ERROR),因为这些被逮住用PHP 7开始..
hakre

Answers:


113

更新:这不再是php 7中可捕获的致命错误。相反,抛出了“异常”。不是从Exception而是Error派生的“ exception”(用引号引起来);它仍然是Throwable的,可以使用普通的try-catch块进行处理。参见https://wiki.php.net/rfc/throwable-interface

例如

<?php
class ClassA {
  public function method_a (ClassB $b) { echo 'method_a: ', get_class($b), PHP_EOL; }
}
class ClassWrong{}
class ClassB{}
class ClassC extends ClassB {}


foreach( array('ClassA', 'ClassWrong', 'ClassB', 'ClassC') as $cn ) {
    try{
      $a = new ClassA;
      $a->method_a(new $cn);
    }
    catch(Error $err) {
      echo "catched: ", $err->getMessage(), PHP_EOL;
    }
}
echo 'done.';

版画

catched: Argument 1 passed to ClassA::method_a() must be an instance of ClassB, instance of ClassA given, called in [...]
catched: Argument 1 passed to ClassA::method_a() must be an instance of ClassB, instance of ClassWrong given, called in [...]
method_a: ClassB
method_a: ClassC
done.

php7之前版本的旧答案:
http : //docs.php.net/errorfunc.constants 说:

E_RECOVERABLE_ERROR(整数)
可捕获的致命错误。它表明发生了可能是危险的错误,但并未使引擎处于不稳定状态。如果错误未由用户定义的句柄捕获(另请参见set_error_handler()),则应用程序将中止,因为它是E_ERROR。

另请参阅:http : //derickrethans.nl/erecoverableerror.html

例如

function myErrorHandler($errno, $errstr, $errfile, $errline) {
  if ( E_RECOVERABLE_ERROR===$errno ) {
    echo "'catched' catchable fatal error\n";
    return true;
  }
  return false;
}
set_error_handler('myErrorHandler');

class ClassA {
  public function method_a (ClassB $b) {}
}

class ClassWrong{}

$a = new ClassA;
$a->method_a(new ClassWrong);
echo 'done.';

版画

'catched' catchable fatal error
done.

编辑:但是您可以“使其”成为您可以使用try-catch块处理的异常

function myErrorHandler($errno, $errstr, $errfile, $errline) {
  if ( E_RECOVERABLE_ERROR===$errno ) {
    echo "'catched' catchable fatal error\n";
    throw new ErrorException($errstr, $errno, 0, $errfile, $errline);
    // return true;
  }
  return false;
}
set_error_handler('myErrorHandler');

class ClassA {
  public function method_a (ClassB $b) {}
}

class ClassWrong{}

try{
  $a = new ClassA;
  $a->method_a(new ClassWrong);
}
catch(Exception $ex) {
  echo "catched\n";
}
echo 'done.';

请参阅:http//docs.php.net/ErrorException


1
因此,这当然很像一个致命错误,只是当您在服务器日志中查找时不会找到它。谢谢php:/
约翰·亨特

3
因此,换句话说,您无法捕获可捕获的错误。精彩!
Paul d'Aoust's

@Paul使您得出这个结论的原因是什么?
VolkerK

3
哦,我只是说它在传统意义上不是可捕获的(使用try / catch块)。那天我只是对PHP感到脾气暴躁,所以当我发现它在完全不同的意义上是“可捕获的”时,我感到不得不评论。没有什么反对您的精彩答案(实际上我赞成);我所有的愤怒都是为了PHP本身!
Paul d'Aoust

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.