php 写日志函数(原创)】的更多相关文章

function write_log($msg,$isEcho=false,$path=''){ $path?'':$path='logs'.DIRECTORY_SEPARATOR.'log'.date('Ymd',time()).'.txt'; if(!is_dir(dirname($path))){ mkdir(dirname($path),0755,true)or die('创建目录失败.'); } $msg=date('Y-m-d H:i:s',time())."------------…
初学,写一个函数用于存储日志调试. function WriteLog($msg) { $filename = dirname(__FILE__) ."\\Debug.log"; $handler = null; if (($handler = fopen($filename, 'ab+')) !== false) { fwrite($handler, '['.date('Y-m-d H:i:s').']'."\t".$msg."\n"); fc…
function insertLog($operate,$description){ $sql="INSERT INTO operate(op,operate,description,createtime)VALUES('".$_SESSION['name']."','".$operate."','".$description."',unix_timestamp())" ; //echo $sql; return mysql_…
public static function writelog($file, $log) { global $_G; $yearmonth = dgmdate(TIMESTAMP, 'Ym', $_G['setting']['timeoffset']); $logdir = DISCUZ_ROOT.'./data/log/'; $logfile = $logdir.$yearmonth.'_'.$file.'.php'; if(@filesize($logfile) > 2048000) { /…
写日志函数为ngx_log_error_core,位于src/core/ngx_log.c:89行核心代码如下:while (log) { if (log->log_level < level && !debug_connection) {            break;        } (void) ngx_write_fd(log->file->fd, errstr, p - errstr); if (log->file->fd == ngx_…
使用 有两种方式去使用winston,直接通过默认的logger,或者实例化自己的Logger,前者设计的目的是在你的应用程序中共享logger比较方便. 使用默认Logger 使用默认的logger很方便,直接通过winston模块获取,任何方法你能调用的方法都可以通过默认的logger实例得到. var winston = require('winston'); winston.log('info','Hello distributed log files!'); winston.info(…
unit uProgLog; interface uses Windows, SysUtils, SyncObjs; const C_LOG_LEVEL_TRACE = $; C_LOG_LEVEL_WARNING = $; C_LOG_LEVEL_ERROR = $; type EnumSeverity = (TraceLevel, WarningLevel, ErrorLevel, LogLevel); function SeverityDesc(severity: EnumSeverity…
1.需求 需求很简单,就是在C#开发中高速写日志.比如在高并发,高流量的地方需要写日志.我们知道程序在操作磁盘时是比较耗时的,所以我们把日志写到磁盘上会有一定的时间耗在上面,这些并不是我们想看到的. 2.解决方案 2.1.简单原理说明 使用列队先缓存到内存,然后我们一直有个线程再从列队中写到磁盘上,这样就可以高速高性能的写日志了.因为速度慢的地方我们分离出来了,也就是说程序在把日志扔给列队后,程序的日志部分就算完成了,后面操作磁盘耗时的部分程序是不需要关心的,由另一个线程操作. 俗话说,鱼和熊掌…
已下为我自己写的一个写日志的类,比较简洁. <?php class Log { /** * @Purpose : 写日志 * @Method Name : writeLog() * @parameter : string $explain 错误说明 * string $error_location 错误位置 * string $dir 保存日志的文件夹名 * @return : (无) */ function writeLog($explain,$error_location,$dir){ if…
1.首先在common.php公共函数文件下写需要的公共函数(appalication/common.php文件下),在此文件下写的函数可以在项目任意页面直接调用 /** * 打印log日志 * @param 文件名 第几行 日志内容 */ function wx_log($basename=null,$num=null,$msg=null) { //$msg = [2018-04-11 09:22:56]文件名:wxpay,第29行,[info]:日志信息 $msg = '['.date("Y…