>  기사  >  백엔드 개발  >  PHP7과 이전 버전의 예외 및 오류 처리 비교

PHP7과 이전 버전의 예외 및 오류 처리 비교

藏色散人
藏色散人앞으로
2019-11-22 13:58:582209검색

PHP7과 이전 버전의 예외 및 오류 처리 비교

먼저 코드

ECHO PHP_VERSION.PHP_EOL;
function add (int $left,int $right){
  return $left+$right;
 }
try {
    echo add('left', 'right');
} catch (Exception $e) {
    // Handle exception
} catch (Error $e) { // Clearly a different type of object
    // Log error and end gracefully
    var_dump($e->getMessage());
}
echo PHP_EOL."helloword".PHP_EOL;

PHP v5.6.1 결과

5.6.1
PHP Catchable fatal error:  Argument 1 passed to add() must be an instance of int, string given, called in C:\usertb\shareubuntu\Workerman\fortest.php on line 8 and defined in C:\usertb\shareubuntu\Workerman\fortest.php on line 3
Catchable fatal error: Argument 1 passed to add() must be an instance of int, string given, called in C:\usertb\shareubuntu\Workerman\fortest.php on line 8 and defined in C:\usertb\shareubuntu\Workerman\fortest.php on line 3
[Finished in 0.0s]

PHP v7.0.15 결과

으아아아아

차이점

후자는 치명적인 오류를 포착하고 정상적으로 helloword를 출력할 수 있습니다

위 내용은 PHP7과 이전 버전의 예외 및 오류 처리 비교의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 segmentfault.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제