php查询时间段
‘壹’ php判断时间范围
<?php
$Hour=date('G');//取得当前是几点,24小时制,不补0
switch($Hour){//循环判断这个小时
case12://如果在12点
$Url='网络网址';
break;
default://其他情况
$Url='其他网址';
}
‘贰’ PHP中怎样求时间段
从你的数据库中得到留言的时间为$ly_time
$diff=time()-$ly_time;
echo time()."<br>".$diff."<br>".bcdiv($diff,60)."<br>";
if(bcdiv($diff,60)<1){
echo $diff."秒以前";
}
elseif(bcdiv($diff,60)>=1 and bcdiv($diff,60)<60){
echo bcdiv($diff,60)."分钟以前";
}elseif(bcdiv($diff, (60 * 60))>=1 and bcdiv($diff, (60 * 60))<24){
echo bcdiv($diff, (60 * 60))."小时以前";
}elseif(bcdiv($diff, (60 * 60 * 24))>=1 and bcdiv($diff, (60 * 60 * 24))<30){
echo bcdiv($diff, (60 * 60 * 24))."天以前";
}else{
echo date("Y-m-d H:i:s", $ly_time);
}
‘叁’ php按时分时间段判断语句
临时写了一段,你看看,
<?php
date_default_timezone_set('PRC');//设置时区,其中PRC为“中华人民共和国”
$j=date("H:i");获得当前小时和分钟的时间
$h=strtotime($j);//获得当前小时和分钟的时间时间戳
$z=strtotime('00:00');//获得指定分钟时间戳,00:00
$x=strtotime('00:29');//获得指定分钟时间戳,00:29
if($h>$z&&$z<$x){
echo'显示时间是00:00到00:29分之间';
}
?>
‘肆’ php查询时间段问应怎么处理呀
南宁的朋友?
全数字的要转换一下。
$sql="select * from `table` where area='南宁' and datetime between ".strtotime('2008-10-12')." and ".strtotime('2009-1-12 23:59:59');
日期的:
$sql="select * from `table` where area='南宁' and datediff('2008-10-12',datetime)>0 and datediff('2009-1-12',datetime)<=0";
//还有,你的datetime字段名应该打错了吧?我猜的。用datatime也不是不可以。
‘伍’ thinkphp 怎么按时间段查询
$sql='select * from think_mytask where strtotime(starttime)<=$time and="">=$time';
应该是这样吧
$sql='select * from think_mytask where strtotime(starttime)<=$time and strtotime(endtime
)>=$time';
‘陆’ thinkphp查询某个时间段的数据
thinkPHP 有两个执行原生sql的 方法
你可以 取这个范围的作为条件然后查询就可以了
$Model->query('select*fromthink_userwherestatus=1');
$Model->execute('updatethink_usersetstatus=1whereid=1');
‘柒’ php中如何查询指定时间段的数据
下面是时间戳查询。如果数据库时间显示的是 2011-04-05 那就不需要 用 strtotime 时间戳转换函数:
$timea = strtotime($_POST['timea']);
$timeb = strtotime($_POST['timeb']);
$sq2="select * from `ecs_order_info` where add_time between '$timea' and '$timeb' and `quanxian`='$dangqian' order by `order_id` DESC limit 50";
$sql = mysql_query($sq2);
(7)php查询时间段扩展阅读
在php中完成
1、UNIX时间戳转换为日期用函数: date()
一般形式:date('Y-m-d H:i:s', 1156219870);
2、日期转换为UNIX时间戳用函数:strtotime()
一般形式:strtotime('2010-03-24 08:15:42');
在MySQL中完成
这种方式在MySQL查询语句中转换,优点是不占用PHP解析器的解析时间,速度快,缺点是只能用在数据库查询中,有局限性。
1、UNIX时间戳转换为日期用函数: FROM_UNIXTIME()
一般形式:select FROM_UNIXTIME(1156219870);
2、日期转换为UNIX时间戳用函数: UNIX_TIMESTAMP()
一般形式:Select UNIX_TIMESTAMP('2006-11-04 12:23:00′);
举例:mysql查询当天的记录数:
$sql=”select * from message Where DATE_FORMAT(FROM_UNIXTIME(chattime),'%Y-%m-%d') = DATE_FORMAT(NOW(),'%Y-%m-%d') order by id desc”。