Maison >développement back-end >tutoriel php >thinkphp时间段查询解决方法

thinkphp时间段查询解决方法

WBOY
WBOYoriginal
2016-06-13 11:51:46990parcourir

thinkphp时间段查询
thinkphp时间段查询,比如查询2014-03-16 09:15:20到2014-04-16 09:15:20这个时间段内的数据
------解决方案--------------------
不会,帮顶,哈哈
------解决方案--------------------
假设你数据库存储时间的字段叫 time 格式是int 存储的是时间戳
可以这样查询

<br />$t1 = 2014-03-16 09:15:20;<br />$t2 = 2014-04-16 09:15:20;<br />$timestart = strtotime($t1);<br />$timeend = strtotime($t2);<br />$model = M("你的数据表")<br />$res = $model -> where("time >= $timestart  and time <= $timeend ")->select();<br />


Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn