-6

在 php 中更改他们的警告信息

警告:include (tools/test_db/viewposta.php) [function.include]: 无法打开流:D:\program files\Server xampp\xampp\htdocs\projc\writecode\tools\terminal\ 中没有这样的文件或目录第 45 行的 run.php

警告:include() [function.include]: 未能打开 'tools/test_db/viewposta.php' 以包含 (include_path = '.; D:\program files\Server xampp\xampp\php\PEAR') in D:\程序文件\Server xampp\xampp\htdocs\projc\writecode\tools\terminal\run.php 45 行

第 45 行的 \projc\writecode\tools\terminal\run.php 出错。

4

1 回答 1

0

如果您在班级内,我建议您set_error_handler这里查看

set_error_handler(
    function($level,$msg,$file,$line) {
        echo "Error at ".$file." on line ".$line;
        exit;
    }
);
于 2013-05-04T15:37:26.767 回答