导航

< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8
统计
 

需求:

1.每日定时执行清理30天以前旧数据,如:当前日期2019年5月8日,需清理所有小于2019年4月8日数据

2.直接通过sql语句实现

/*
* 定时任务,每日0:00执行,删除一个月以前的短链接
* 0 0 * * * /usr/local/php/bin/php 01-delete_surl.php
*/
$link = new mysqli('127.0.0.1', 'root', 'root', 'surl', 3306);
$sql = "delete from information where information like '%articledetails%' and time < date_sub(curdate(), INTERVAL 30 DAY)";
// 或者
// $sql = "delete from information where information like '%articledetails%' and date(time) < date_sub(curdate(), INTERVAL 30 DAY)";
mysqli_query($link, $sql) or die('删除数据出错:' . mysqli_error($link));
$link->close()

原文链接:https://blog.csdn.net/zhu6201976/article/details/89951049

posted on   slqt  阅读(585)  评论(0编辑  收藏  举报
 
点击右上角即可分享
微信分享提示