在php中更改警告消息

时间:2013-05-04 15:34:09

标签: php

在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]:打开'工具/失败   包含test_db / viewposta.php'(include_path ='。; D:\   程序文件\ Server xampp \ xampp \ php \ PEAR')在D:\ program中   files \ Server xampp \ xampp \ htdocs \ projc \ writecode \ tools \   第45行的terminal \ run.php

  

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

1 个答案:

答案 0 :(得分:0)

如果您在课堂上,我建议您从here查看set_error_handler

set_error_handler(
    function($level,$msg,$file,$line) {
        echo "Error at ".$file." on line ".$line;
        exit;
    }
);