码迷,mamicode.com
首页 > 其他好文 > 详细

打印日志类

时间:2015-06-24 14:35:49      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:

<?php

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
class  WriteLog{
    
    public static function setLog($file,$content){
        
        $flag = "testwin";
        
        try{
            $file = preg_replace(‘#[^A-z0-9]#‘,‘‘,$file);
            $_ospath = "C:/S0519LOG/";
            $_ospath2 = "/usr/S0519LOG/";
            $Agent=$_SERVER[‘HTTP_USER_AGENT‘];
           
           if ($flag=="testwin"){
             
                if (!is_dir($_ospath)) mkdir($_ospath); // 如果不存在则创建
                if(!is_dir($_ospath.date(‘Ymd‘)))mkdir($_ospath.date(‘Ymd‘)); // 如果不存在则创建
                $file = $_ospath.date(‘Ymd‘)."/".$file.".txt";
                if (!file_exists($file)) { // 如果不存在则创建

                }
                 
                 $handle=fopen($file,"a");
                 fwrite($handle,"\r\n===".date("h:i:sa")."===\r\n");
                 fwrite($handle,$content);
                 fclose($handle);
            }else if($flag=="testlinux"){
                if(!is_dir($_ospath2.date(‘Ymd‘))){// 如果不存在则创建
                   if(mkdir($_ospath2.date(‘Ymd‘)."/", 0777)){

                   }else{

                   }
                }
                $file = $_ospath2.date(‘Ymd‘)."/".$file.".txt";
               // echo $file;
                $handle=fopen($file,"a");

                fwrite($handle,"\r\n===".date("h:i:sa")."===\r\n");
                fwrite($handle,$content);

                fclose($handle);

                
            }
           

          
        }catch(Exception $e){
            
        }
        
    }
}
?>

 

打印日志类

标签:

原文地址:http://www.cnblogs.com/bafeiyu/p/4597505.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!