
Throwable 클래스의 자손인 Exception이나 Error 클래스의 인스턴스를 문자열로 변환하는 방법은 다음과 같습니다.
#hostingforum.kr
php
try {
// 예외가 발생할 코드
} catch (Exception $e) {
// Exception 인스턴스를 문자열로 변환
$message = (string) $e;
echo $message;
}
위의 코드에서 Exception 인스턴스를 문자열로 변환하여 $message 변수에 저장하고, 그 값을 출력합니다.
Exception이나 Error 클래스의 인스턴스를 문자열로 변환하는 메소드는 Throwable 클래스의 자손에서 재정의할 수 있습니다. 예를 들어, Exception 클래스의 자손인 RuntimeException 클래스는 __toString() 메소드를 재정의했습니다.
#hostingforum.kr
php
class CustomException extends Exception {
public function __toString() {
return 'Custom Exception';
}
}
try {
// 예외가 발생할 코드
} catch (CustomException $e) {
// CustomException 인스턴스를 문자열로 변환
$message = (string) $e;
echo $message; // Custom Exception
}
위의 코드에서 CustomException 클래스는 Exception 클래스의 자손으로, __toString() 메소드를 재정의했습니다. 따라서 CustomException 인스턴스를 문자열로 변환할 때, 재정의한 __toString() 메소드가 호출됩니다.
2025-04-04 16:39