我想将php生成的任何错误和警告存储在日志文件中,但仍然也会以正常方式(echo)显示它们。
由于
答案 0 :(得分:1)
php.ini包含两个相关变量:您可以使用error_log
指定日志文件,并选择是否使用display_errors
答案 1 :(得分:1)
您可以定义自己的功能并描述如何处理错误。
http://www.php.net/manual/en/function.set-error-handler.php
http://www.php.net/manual/en/function.set-exception-handler.php
http://php.net/manual/en/function.register-shutdown-function.php
答案 2 :(得分:0)
我不是100%清楚这个问题,但觉得它是错误处理的组合:
http://us2.php.net/manual/en/ref.errorfunc.php
并在php.ini文件中正确设置错误处理设置,或在运行时使用:
http://us2.php.net/manual/en/function.ini-set.php
具体做法是:
http://us2.php.net/manual/en/errorfunc.configuration.php
如果你有特别的想法,请告诉我。