更新:これは、php 7ではもはやキャッチ可能な致命的なエラーではありません。代わりに、「例外」がスローされます。由来していない(恐怖引用符で)「例外」の例外が、エラー。それでも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(integer)キャッチ
可能な致命的なエラー。おそらく危険なエラーが発生しましたが、エンジンが不安定な状態のままではありませんでした。エラーがユーザー定義のハンドル(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
E_RECOVERABLE_ERROR
これらはPHP 7で始まるcatchedすると...)