在__destruct析构函数里操作文件出现的问题
Posted thors
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在__destruct析构函数里操作文件出现的问题相关的知识,希望对你有一定的参考价值。
这几天要给后台加一个记录操作日志的功能,可是项目已经开发完了不可能再去改以前的代码了,那有什么快捷的方法呢?
想到了用__destruct 析构函数。
大家都知道,析构函数会在到某个对象的所有引用都被删除或者当对象被显式销毁时执行。
所以应该没问题咯,1、配置要记录日志的操作 2、读取IP、get、post数据写入库 3.本地测试没问题,搞定。
结果 BU G T
部署到线上之后,Thinkphp底层报错了:
Fatal error: Uncaught ThinkException: _STORAGE_WRITE_ERROR_***/Runtime/Data/_fields/表结构缓存文件.php in ***/Runtime/common~runtime.php:1 Stack trace: #0 ***/ThinkPHP/Library/Think/Storage/Driver/File.class.php(48): E(‘_STORAGE_WRITE_...‘) #1 [internal function]: ThinkStorageDriverFile->put(‘***‘, ‘a:9:{i:0;s:2:"i...‘, ‘F‘) #2 ***/ThinkPHP/Library/Think/Storage.class.php(37): call_user_func_array(Array, Array) #3 ***/hwApp/Runtime/common~runtime.php(1): ThinkStorage::__callstatic(‘put‘, Array) #4 ***/ThinkPHP/Library/Think/Model.class.php(166): F(‘***‘, Array) #5 ***/ThinkPHP/Library/Think/Model.class.php(122): ThinkModel->flush() #6 ***/ThinkPHP/Library/Think/Model.class.php(1454): ThinkModel->_checkTableInfo() #7 ***/ThinkPHP/Library/Think/Model.class.php(97): ThinkModel->db(0, ‘‘, true) #8 ***/Runtime/common~runtime.php(1): ThinkModel->__construct( in ***/Runtime/common~runtime.php on line 1
咦?啥情况,难道没权限?
chmod -R 777 Runtime
还报错,难道是缓存引起的?
rm -rf Runtime
还报错。
最后在重新看官方对该函数的说明,手册里有一个不太明显的notice:
Note:
析构函数在脚本关闭时调用,此时所有的HTTP头信息已经发出。 脚本关闭时的工作目录有可能和在SAPI(如apache)中时不一样。
<?php
//获取当前工作目录 function __destruct(){
echo getcwd(); //结果为根目录
}
知道了问题所在,怎么解决呢?
1、在__destruct 中使用绝对路径操作文件
2、__destruct 之前比如构造函数内,先获取 getcwd() 工作目录,然后在 __destruct 中使用 chdir($StrPath) 重新设定工作目录。 //暂未测出有其他影响
另:
<?php
//在使用Thinkphp3.23框架开发时发现下面3个Action(实现功能其实都一样):只有aAction会触发上述__destruct中工作目录发生改变(使用了exit die等),而另外两种却不会触发,暂时未找到原因。 function aAction(){ if(true){ //doSomeThing; exit; } //doElseSomeThing; }
function bAction(){
if(true){
//doSomeThing;
return ;
}
//doElseSomeThing;
}
function cAction(){
if(true){
//doSomeThing;
}else{
//doElseSomeThing;
}
}