php 时间戳一些示例

如根据当前时间 确定本天的起止时间

// 获取当天的时间段内
  $nowdate = date("Y-m-d",time());
  $begintime = strtotime($nowdate);     //当天的开始 时间戳
  $endtime = $begintime + 60*60*24;  //当天的结束 时间戳
  $map[‘add_time‘] = array(array(‘egt‘,$begintime),array(‘lt‘,$endtime),‘AND‘);

如根据当前时间  确定本月的起止时间

$nowmonth = date("m",time());         //获取当前月
    if($nowmonth == ‘01‘ || $nowmonth == ‘03‘ || $nowmonth == ‘05‘ || $nowmonth == ‘07‘ || $nowmonth == ‘08‘ || $nowmonth == ‘10‘ || $nowmonth == ‘12‘){
            $nowdate = date("Y-m",time());
            $mstarttime = strtotime($nowdate); //本月的开始 时间戳
            $mendtime = $mstarttime + 31*60*60*24;

}else if($nowmonth == ‘02‘){
           $nowdate = date("Y-m",time());
           $mstarttime = strtotime($nowdate); //本月的开始 时间戳
           $mendtime = $mstarttime + 28*60*60*24;

}else if($nowmonth == ‘04‘ || $nowmonth == ‘06‘ || $nowmonth == ‘09‘ || $nowmonth == ‘11‘){

$nowdate = date("Y-m",time());
         $mstarttime = strtotime($nowdate); //本月的开始 时间戳
         $mendtime = $mstarttime + 30*60*60*24; //本月的结束时间
}

$map[‘add_time‘] = array(array(‘egt‘,$mstarttime),array(‘lt‘,$mendtime),‘AND‘);

时间: 2024-10-13 19:41:30

php 时间戳一些示例的相关文章

js 时间格式与时间戳的相互转换示例代码

一.时间转换时间戳 function transdate(endTime){ var date=new Date(); date.setFullYear(endTime.substring(0,4)); date.setMonth(endTime.substring(5,7)-1); date.setDate(endTime.substring(8,10)); date.setHours(endTime.substring(11,13)); date.setMinutes(endTime.sub

php中时间戳和日期格式的转换

一,PHP时间戳函数获取指定日期的unix时间戳 strtotime(”2009-1-22″) 示例如下: echo strtotime(”2009-1-22″) 结果:1232553600 说明:返回2009年1月22日0点0分0秒时间戳 二,PHP时间戳函数获取英文文本日期时间 示例如下: 便于比较,使用date将当时间戳与指定时间戳转换成系统时间 (1)打印明天此时的时间戳strtotime(”+1 day”) 当前时间:echo date(”Y-m-d H:i:s”,time()) 结果

php时间戳

// 获得零点的时间戳 $time = strtotime(date('Ymd'));   // 获得今天24点的时间戳 $time = strtotime(date('Ymd')) + 86400; // 上一天时间戳 $date = strtotime('-1 days'); //获取当天的年份 $y = date("Y"); //获取当天的月份 $m = date("m"); //获取当天的号数 $d = date("d"); //将今天开

PHP时间戳 strtotime()使用方法和技巧

在php中我想要获取时间戳有多种方法,最常用的就是使用time函数与strtotime()函数把日期转换成时间戳了, 下面我来给大家分享一下时间戳函数 strtotime用法. 获取指定的年月日转化为时间戳: pHP时间戳函数获取指定日期的unix时间戳 strtotime('2012-12-7') 示例如下: <?php echo strtotime('2012-12-7'); //结果:1354838400 ?> 说明:返回2012年12月7日0点0分0秒时间戳. 将当前年月日转化为时间戳

HBase学习(十一)hbase Java API 介绍及使用示例

几个相关类与HBase数据模型之间的对应关系 java类 HBase数据模型 HBaseAdmin 数据库(DataBase) HBaseConfiguration HTable 表(Table) HTableDescriptor 列族(Column Family) Put 列修饰符(Column Qualifier) Get Scanner 一.HBaseConfiguration 关系:org.apache.hadoop.hbase.HBaseConfiguration 作用:对HBase进

PHP时间戳函数总结

PHP语言中的函数有许多种,各种应用方式不同,实现的功能也不尽相同.我们在本文种为大家总结了PHP时间戳函数,希望能作为参考学习对象. 探讨PHP动态图像创建技巧 PHP获取随机数经验之谈 如何正确运用PHP随机数类 探讨PHP函数mt_srand使用技巧 分享PHP加密扩展库Mcrypt安装及应用技巧 一,PHP时间戳函数获取指定日期的unix时间戳 strtotime("2009-1-22″) 示例如下: echo strtotime("2009-1-22″) 结果:1232553

PHP日期转化显示及时间戳

一,PHP时间戳函数获取指定日期的unix时间戳 strtotime(”2009-1-22″) 示例如下: echo strtotime(”2009-1-22″) 结果:1232553600 说明:返回2009年1月22日0点0分0秒时间戳 二,PHP时间戳函数获取英文文本日期时间 示例如下: 便于比较,使用date将当时间戳与指定时间戳转换成系统时间 (1)打印明天此时的时间戳strtotime(”+1 day”) 当前时间:echo date(”Y-m-d H:i:s”,time()) 结果

HBase总结(十一)hbase Java API 介绍及使用示例

几个相关类与HBase数据模型之间的对应关系 java类 HBase数据模型 HBaseAdmin 数据库(DataBase) HBaseConfiguration HTable 表(Table) HTableDescriptor 列族(Column Family) Put 列修饰符(Column Qualifier) Get Scanner 一.HBaseConfiguration 关系:org.apache.hadoop.hbase.HBaseConfiguration 作用:对HBase进

转载:PHP时间戳 strtotime()使用方法和技巧

在php中我想要获取时间戳有多种方法,最常用的就是使用time函数与strtotime()函数把日期转换成时间戳了 获取指定的年月日转化为时间戳:pHP时间戳函数获取指定日期的unix时间戳 strtotime('2012-12-7') <?php echo strtotime('2012-12-7'); //结果:1354838400 ?> 说明:返回2012年12月7日0点0分0秒时间戳. 将当前年月日转化为时间戳:PHP时间戳函数获取当前日期的unix时间戳,示例如下: <?php