(PHP 5, PHP 7, PHP 8)
Exception::getLine — 獲取創(chuàng)建的異常所在文件中的行號(hào)
返回發(fā)生異常的代碼在文件中的行號(hào)。
此函數(shù)沒(méi)有參數(shù)。
返回發(fā)生異常的代碼在文件中的行號(hào)。
示例 #1 Exception::getLine()示例
<?php
try {
throw new Exception("Some error message");
} catch(Exception $e) {
echo "The exception was thrown on line: " . $e->getLine();
}
?>
以上例程的輸出類似于:
The exception was thrown on line: 3