PHP implements a simple log processing class

不言
Release: 2023-03-24 11:28:02
Original
2022 people have browsed it

This article mainly introduces the implementation of a simple log processing class in PHP, which has certain reference value. Now I share it with everyone. Friends in need can refer to it

<?php
//以下为日志


interface ILogHandler
{
	public function write($msg);
	
}


class CLogFileHandler implements ILogHandler
{
	private $handle = null;
	
	public function __construct($file = &#39;&#39;)
	{
		$this->handle = fopen($file,&#39;a&#39;);
	}
	
	public function write($msg)
	{
		fwrite($this->handle, $msg, 4096);
	}
	
	public function __destruct()
	{
		fclose($this->handle);
	}
}


class Log
{
	private $handler = null;
	private $level = 15;
	
	private static $instance = null;
	
	private function __construct(){}


	private function __clone(){}
	
	public static function Init($handler = null,$level = 15)
	{
		if ( ! self::$instance instanceof self ) {
			self::$instance = new self();
			self::$instance->__setHandle($handler);
			self::$instance->__setLevel($level);
		}
		return self::$instance;
	}
	
	
	private function __setHandle($handler){
		$this->handler = $handler;
	}
	
	private function __setLevel($level)
	{
		$this->level = $level;
	}
	
	public static function DEBUG($msg)
	{
		self::$instance->write(1, $msg);
	}
	
	public static function WARN($msg)
	{
		self::$instance->write(4, $msg);
	}
	
	public static function ERROR($msg)
	{
		$debugInfo = debug_backtrace();
		$stack = "[";
		foreach($debugInfo as $key => $val){
			if(array_key_exists("file", $val)){
				$stack .= ",file:" . $val["file"];
			}
			if(array_key_exists("line", $val)){
				$stack .= ",line:" . $val["line"];
			}
			if(array_key_exists("function", $val)){
				$stack .= ",function:" . $val["function"];
			}
		}
		$stack .= "]";
		self::$instance->write(8, $stack . $msg);
	}
	
	public static function INFO($msg)
	{
		self::$instance->write(2, $msg);
	}
	
	private function getLevelStr($level)
	{
		switch ($level)
		{
		case 1:
			return &#39;debug&#39;;
		break;
		case 2:
			return &#39;info&#39;;	
		break;
		case 4:
			return &#39;warn&#39;;
		break;
		case 8:
			return &#39;error&#39;;
		break;
		default:
				
		}
	}
	
	protected function write($level,$msg)
	{
		if(($level & $this->level) == $level )
		{
			$msg = &#39;[&#39;.date(&#39;Y-m-d H:i:s&#39;).&#39;][&#39;.$this->getLevelStr($level).&#39;] &#39;.$msg."\n";
			$this->handler->write($msg);
		}
	}
}

?>
Copy after login
<br/>
Copy after login


Calling method:


$logHandler= new CLogFileHandler(ROOTPATH ​​. '/logs/'.date('Y-m-d').'.log');

$log = Log::Init($logHandler, 15);

Log::DEBUG( var_export($response, true) );

Related recommendations:

Log collection system implemented in PHP

Method of generating promotional posters implemented in PHP



The above is the detailed content of PHP implements a simple log processing class. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!