我想为我的系统创建一个日志文件来注册/记录它们在系统内做的每一个操作。但我不知道该怎么做。
例如,我有这个 php 代码,它执行登录功能。
public function hasAccess($username,$password){
$form = array();
$form['username'] = $username;
$form['password'] = $password;
$securityDAO = $this->getDAO('SecurityDAO');
$result = $securityDAO->hasAccess($form);
//var_dump($form);
//var_dump($result);
if($result[0]['success']=='1'){
$this->Session->add('user_id', $result[0]['id']);
//$this->Session->add('username', $result[0]['username']);
//$this->Session->add('roleid', $result[0]['roleid']);
return $this->status(0,true,'auth.success',$result);
}else{
return $this->status(0,false,'auth.failed',$result);
}
}
现在我想创建一个名为“ the date today”的日志文件,然后当该函数用于登录时,它将写入用户已经登录,其他函数也是如此。但我每天只需要一个文件夹。
有没有人能好心地指导我,教我怎么写代码?