php 写日志

php 写日志
 1 <?php
 2 class writelog {
 3 /**
 4 * 写文件
 5 * @param    string  $file   文件路径
 6 * @param    string  $str    写入内容
 7 * @param    char    $mode   写入模式
 8 *
 9 */      
10 //    function writeFile($file,$str,$mode) 
11     function writeFile($debug,$str)
12     {
13         if($debug  = 1)
14       { 
15           $oldmask = @umask(0); 
16           $RootPath = $_SERVER[‘DOCUMENT_ROOT‘].""; 
17         $file = $RootPath.‘/log/‘.date(‘Y-m-d‘).‘.log‘;  
18         $str = date(‘m-d-s‘)."       " .$str."\n\r";
19         if(!file_exists($file))
20         {
21                $mode=‘w‘;
22         } 
23         else
24         {
25               $mode=‘a‘;
26         }                                                       
27       $fp = @fopen($file,$mode);
28       @fwrite($fp,$str);
29       @fclose($fp);
30       @umask($oldmask);
31     }
32   }
33 } 
34 
35 ?>
php 写日志

 

1
2
3
4
5
6
7
调用
 
<?php
  require_once(‘./lib/writelog.php‘);
  $writelog=new writelog();
  $writelog(1,"aaa");
?>

  

php 写日志,布布扣,bubuko.com

php 写日志

上一篇:SPSS .net


下一篇:如何用JS获取键盘上任意按键的值?兼容FireFox和IE js获取键盘ASCII码?js键盘事件全面控制