db.php 文件中添加
public function getlastsql(){
return $this->sql;
}
入口文件中添加,公共方法
function getlastsql(){
include ‘../cmstop/framework/factory.php‘;
$db = & factory::db();
return $db->getlastsql();
}
function mylog1($input){
$file = ‘../mylog1.txt‘;
file_put_contents($file,‘执行时间:‘.date(‘Y-m-d H:i:s‘,time())."\n".$input."\n\n",FILE_APPEND);
}
时间: 2024-10-29 05:01:52