简体   繁体   中英

Store PHP errors in a log file

I would like to store any errors and warings generated by php in a log file but still display them in the normal way (echo) as well.

Thanks

php.ini包含两个相关变量:您可以使用error_log指定日志文件,并选择是否使用display_errors显示错误

I am not 100% clear on the question but feel it is a combination of error handling:

http://us2.php.net/manual/en/ref.errorfunc.php

And correctly setting the error handling settings in your php.ini file, or at runtime with:

http://us2.php.net/manual/en/function.ini-set.php

Specifically:

http://us2.php.net/manual/en/errorfunc.configuration.php

If you have something specific in mind, let me know.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM