Error::getLine
(PHP 7, PHP 8)
Error::getLine — 獲取錯誤發生時的行號
說明
final public Error::getLine(): int
獲取錯誤發生時的行號。
參數
此函式沒有參數。
返回值
返回錯誤發生時的行號。
範例
示例 #1 Error::getLine() 例子
<?php
try {
throw new Error("Some error message");
} catch(Error $e) {
echo "The error was created on line: " . $e->getLine();
}
?>
以上例程的輸出類似於:
The error was created on line: 3