Heim  >  Artikel  >  Backend-Entwicklung  >  php实现的简单日志写入函数_PHP教程

php实现的简单日志写入函数_PHP教程

WBOY
WBOYOriginal
2016-07-13 09:58:37938Durchsuche

php实现的简单日志写入函数

 本文实例讲述了php实现的简单日志写入函数。分享给大家供大家参考。具体实现方法如下:

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 to use this

function log( $logthis ){

file_put_contents('logfile.log', date("Y-m-d H:i:s"). " " . $logthis.PHP_EOL, FILE_APPEND | LOCK_EX);

}

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/977160.htmlTechArticlephp实现的简单日志写入函数 本文实例讲述了php实现的简单日志写入函数。分享给大家供大家参考。具体实现方法如下: 1 2 3 4 5 6 7 8 9 func...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn