如何在php中创建日志文件
我想为我的系统创建一个日志文件,以注册/记录他们在系统内执行的每个操作。但我不知道该怎么做。
例如,我有这个执行登录功能的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);
}
}
现在我想创建一个名为“今天的日期”的日志文件,然后当该函数用于登录时,它将写入该用户已登录,与其他函数相同。但我每天都只想要一个文件。
任何人都可以好心地指导和教我应该如何做我的代码吗?