I need to write the local time information , the exception message to a php log file. I don't know why I can't get the format correct. The script I use is this:
error_log('['.date("F j, Y, g:i a").']'.$msg." <br>", 3, $phperrorPath);
There are two problem with this:
- The date is not written in local time, instead it's default to the GMT+0 time; I want to write the machine time information to the log
- After the file is written, it's not break to another line.
How to modify this code?