Simple log write function implemented by PHP
This article describes a simple log write function implemented by PHP. Share to everyone for your reference. The implementation method is as follows:
1 2 3 4 5 6 7 8 9 |
function log ($logthis) { File_put_contents (' Logfile.log ', date ("Y-m-d h:i:s"). " " . $logthis. "\ r \ n", File_append | LOCK_EX); } Use \ r \ n for new line on Windows, just \ n on Linux Php_eol Cross platform solution for new line So better function log ($logthis) { File_put_contents (' Logfile.log ', date ("Y-m-d h:i:s"). " " . $logthis. Php_eol, File_append | LOCK_EX); } |
http://www.bkjia.com/PHPjc/977160.html www.bkjia.com true http://www.bkjia.com/PHPjc/977160.html techarticle Simple log write function implemented by PHP This article describes a simple log write function implemented by PHP. Share to everyone for your reference. The implementation method is as follows: 1 2 3 4 5 6 7 8 9 func ...