当前位置: 网学 > 编程文档 > PHP > 正文

PHP中设置时区,记录日志文件的实现代码

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/06/18

鉴于大家对PHP十分关注,我们编辑小组在此为大家搜集整理了“PHP中设置时区,记录日志文件的实现代码”一文,供大家参考学习

复制代码 代码如下:
<html>
<body>
<?php
date_default_timezone_set(''Asia/Hong_Kong''); //set time zone
set_error_handler("myHandler"); //set error handler
$chinatime = date(''Y-m-d H:i:s''); //get current time
$max_size = 500000;
try
{
$content = "Hello WeiXin!";
logger2($content);
//throw new Exception("Value must be 1 or below aaaaaaaaaaaaaaaaaaa");
}
catch(Exception $e)
{
logger2("Exception Message: ".$e->getMessage());
}
//record operation log into .log file
function logger($log_content)
{
print_r(date(''H:i:s'')." ".$log_content."<br />");
$log_filename = date("Ymd").".log";
$file = fopen($log_filename ,"a+");
fwrite($file, date(''H:i:s'')." ".$log_content."\r\n");
fclose($file);
}
//record operation log into .log file
function logger2($log_content)
{
Global $max_size;
print_r(date(''H:i:s'')." ".$log_content." "."<br />");
$log_filename = date("Ymd").".log";
if(file_exists($log_filename) and (abs(filesize($log_filename)) > $max_size)){unlink($log_filename);sleep(1);}
file_put_contents($log_filename, date(''H:i:s'')." ".$log_content." "."\r\n", FILE_APPEND);
}
//error handler function
function myHandler($level, $message, $file, $line, $context)
{
logger("<b>[ERROR]</b> LEVEL: $level, MESSAGE: $message, FILE: $file, LINE: $line, CONTENT: $context");
die();
}
?>
</body>
</html>

原文网址:http://txw1958.cnblogs.com/

网学推荐

免费论文

原创论文

浏览:
设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号