发布网友 发布时间:2022-04-29 03:15
共5个回答
热心网友 时间:2022-04-18 13:36
//php中时间戳的区间运算
热心网友 时间:2022-04-18 14:54
$sql = "select * from `table` where `mytime` > '$up time' and `mytime` < '$end_time'";
热心网友 时间:2022-04-18 16:28
你直接运算select * from 表名 where 字段名>=$up_time and 字段名<=$end_time 就行了热心网友 时间:2022-04-18 18:20
直接判断大小就可以了,比如 select * from TableName where uptime<endtime and uptime>starttime热心网友 时间:2022-04-18 20:28
大于等于$up_time 与 小于等于$end_time