php怎么显示错误行数
时间:2022-02-11 13:46
在php中,可以使用异常处理类Exception中的getLine()函数来显示错误行数,该函数可返回返回发生错误的代码行号,语法“final public Exception::getLine(): int”。 本教程操作环境:windows7系统、PHP7.1版,DELL G3电脑 PHP 中提供了内置的异常处理类——Exception,该类中的成员函数getLine()可返回发生错误的代码行号 Exception::getLine — 获取创建的异常所在文件中的行号 语法: 返回值:返回发生错误的代码行号。 示例: 输出结果: 推荐学习:《PHP视频教程》 以上就是php怎么显示错误行数的详细内容,更多请关注gxlsystem其它相关文章!final public Exception::getLine(): int
<?php
header("Content-type:text/html;charset=utf-8");
try {
throw new Exception("一些错误消息");
} catch(Exception $e) {
echo "错误发生在第: " . $e->getLine()."行";
}
?>