[PHP] How to Check the Output Directory of error_log

Tadashi Shigeoka ·  Sun, October 16, 2011

Here’s how to check the output directory of PHP’s error_log.

You can check by entering the following command on the command line:

$ php -i | grep error_log

error_log => /home/log/php/error.log => /home/log/php/error.log

That’s all from the Gemba.