怎么用Yii框架实现登录日记

WBOY
Release: 2016-06-13 13:43:53
Original
920 people have browsed it

如何用Yii框架实现登录日记
管理员可以查看登录系统的历史记录.包括失败和成功的信息.
日记信息为:登录的IP,登录的用户名,信息描述.登陆时间.
主要是如何记录该信息然后展示出来,想用文件记录这些信息.

------解决方案--------------------
自己写个日志类,记录就是了.
------解决方案--------------------
***.***.***.***;登录的用户名1;信息描述1;登陆时间1
***.***.***.***;登录的用户名2;信息描述2;登陆时间2
***.***.***.***;登录的用户名3;信息描述3;登陆时间3
···
···


以; explode成一个字符串 然后每条记录一行 file_put_contents到文件中

也可以把每条记录以某个符号拼成一个长字符串 
读出来只是个数组 展示的样式楼主可以自己设计 

------解决方案--------------------
继承CUserIdentity类,重写authenticate方法,在authenticate方法里头加入登陆需要记录的资料!
比较简单的做法用error_log方法
error_log($msg, 3, ‘login_log');

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!