代码拉取完成,页面将自动刷新
<?php
/**
* 记录日志,默认目录 myoa/webroot/
* new log($logName,$size=2)
* 默认 2mb 大小,超过后自动重命名
*/
class log{
private $logName;
private $logPath;
private $logSize = 2;
private $link;
//创建日志并检测日志大小
public function __construct($logName,$size=null){
$this->logName = $logName;
$this->logPath = $_SERVER['DOCUMENT_ROOT']."/$this->logName.txt";
if($size != null and $size>0){
$this->logSize = $size;
}
if(!$this->exist()){
$this->link = fopen($this->logPath, "a+");
if(!$this->link){
exit('无法创建文件');
}
}else{
if($this->getSize() > $this->logSize){
if(!$this->rename()){
echo "日志文件过大且无法重命名会导致性能下降";
}
}
$this->link = fopen($this->logPath, "a+");
}
}
//检测文件是否存在
private function exist(){
if(is_file($this->logPath)){
return true;
}else{
return false;
}
}
//返回文件的大小 mb
public function getSize(){
if($this->exist()){
$size = filesize($this->logPath);
}else{
return -1;
}
if($size<1024){
return 0.01;
}else if($size>1024 and $size<=1048576){
return 0.1;
}else if($size>1048576){
return round(($size/1024)/1024,2);
}
}
public function rename (){
if($this->exist()){
$newName = $_SERVER['DOCUMENT_ROOT']."/$this->logName".time().".txt";
return rename($this->logPath, $newName);
}else{
return false;
}
}
public function add($str){
$str = $str."------".date('Y-m-d H:i:s').PHP_EOL;
if($this->exist()){
$num = fwrite($this->link, $str);
}
if($num == false){
exit('写入日志失败!');
}
}
public function __destruct(){
fclose($this->link);
}
}
?>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。