throwable1 PHP 7 에서의 예외처리 - Throwable, Exception, Error PHP 의 경우 Error 와 Exception 을 구분합니다. PHP 7 에서는 Error 중 E_ERROR, E_RECOVERABLE_ERROR 의 경우 Exception 처럼 사용(try, catch, finally)이 가능합니다.(그 외 Error 는 기존의 방식과 동일합니다.) 하지만, Exception 처럼 사용이 가능하다고 Exception 클래스를 상속받은 것은 아닙니다. 별도의 Error 클래스를 상속받았지요. 다만, Exception 과 Error 클래스는 모두 Throwable 인터페이스를 상속하여 구현되었습니다. Throwable { abstract public string getMessage ( void ) abstract public int getCode ( void ) abst.. 2017. 4. 21. 이전 1 다음