Non Capturing Catches

정실버·2022년 7월 3일
0

php8

목록 보기
4/6
post-thumbnail

catch 구문에서 사용하지 않는 Exception 변수는 명시하지 않아도 됨

< PHP8

try {
    changeImportantData();
} catch (PermissionException $ex) {
    echo "You don't have permission to do this";
}

>= PHP8

try {
    changeImportantData();
} catch (PermissionException) { // The intention is clear: exception details are irrelevant
    echo "You don't have permission to do this";
}
profile
백엔드. PHP. NodeJS

0개의 댓글