程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php記錄日志的實現代碼

php記錄日志的實現代碼

編輯:關於PHP編程

復制代碼 代碼如下:
$ss_log_level = 0;

  $ss_log_filename = /tmp/ss-log;

  $ss_log_levels = array(
   NONE => 0,
   ERROR => 1,
   INFO => 2,
   DEBUG => 3
);

//設置日志級別
  function ss_log_set_level ($level = ERROR) {
   global $ss_log_level;
   $ss_log_level = $level;
  }

//記錄日志

function ss_log ($level, $message) {    global $ss_log_level, $ss-log-filename;

   if ($ss_log_levels[$ss_log_level] < $ss_log_levels[$level]) {
   // 不顯示Log信息
   return false;
   }

   $fd = fopen($ss_log_filename, "a+");
   fputs($fd, $level. - [.ss_times*****p_pretty().] - .$message."n");
   fclose($fd);
   return true;
  }

//清空日志
  function ss_log_reset () {
   global $ss_log_filename;
   @unlink($ss_log_filename);
  }
  

//調用示例
復制代碼 代碼如下:
ss_log_set_level(INFO);

ss_log(ERROR, "testing level ERROR");
ss_log(INFO, "testing level INFO");
ss_log(DEBUG, "testing level DEBUG");

ss_log_reset();

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved