(PHP 5, PHP 7, PHP 8)
Exception::__toString — İstisnanın dizgesel gösterimiyle döner
Bu işlevin bağımsız değişkeni yoktur.
İstisnanın string türündeki gösterimiyle döner.
Örnek 1 - Exception::__toString() örneği
<?php
try {
throw new Exception("Bir hata iletisi");
} catch(Exception $e) {
echo $e;
}
?>
Yukarıdaki örnek şuna benzer bir çıktı üretir:
exception 'Exception' with message 'Bir hata iletisi' in /home/nilgun/tmp/ex.php:3 Stack trace: #0 {main}