(PHP 5, PHP 7)
Exception::getFile — İstisnanın oluştuğu dosyanın adı ile döner
İstisnanın oluştuğu dosyanın adı ile döner.
Bu işlevin değiştirgesi yoktur.
İstisnanın oluştuğu dosyanın adı ile döner.
Örnek 1 - Exception::getFile() örneği
<?php
try {
throw new Exception;
} catch(Exception $e) {
echo $e->getFile();
}
?>
Yukarıdaki örnek şuna benzer bir çıktı üretir:
/home/bjori/tmp/ex.php