php如何表示从当前日期起三个月之内的数据
发布网友
发布时间:2024-09-06 03:51
我来回答
共1个回答
热心网友
时间:2024-10-11 09:15
<?php
//获取今天 0点的时间戳
$start_time = strtotime(date("Y-m-d"));//或者Y-m-d H:i:s
//获取三个月后的时间戳
$end_time = strtotime("+3 month",$start_time );
//查询语法
$sql = "select * from table1
where add_time >= $start_time and add_time <= $end_time
order by add_time asc
limit 100";