Store PHP errors in a log file

前端 未结 3 443
醉酒成梦
醉酒成梦 2021-01-26 01:50

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

3条回答
  •  灰色年华
    2021-01-26 02:18

    You can define your own function and describe what to do with errors.

    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

提交回复
热议问题