不能记录昨天的.... 如果你需要一个完整的记录那么就需要有一个详情表.把每一条记录都插到数据库 时间 IP 然后做一个统计 显示的时候根据时间戳来显示 ------解决方案-------------------- 简单来说,数据库建内存表clicks,2个字段a,UNIQUE b,其中a字段用来统计,b字段代表当天的0点
php使用如下sql语句进行更新
INSERT INTO clicks (b, a) VALUES('当天的0点', 1) ON DUPLICATE KEY UPDATE a=a+1;
Statement:
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 admin@php.cn