帝国cms函数,to_time(),将日期时间转换为UNIX时间戳

to_time()

函数:to_time()
功能:将日期 / 日期时间 类型转换成unix时间戳
位置:/e/class/connect.php  1320行
版本:帝国cms7.2
 
函数说明
to_time($datetime)
 
$datetime : 日期类型格式如:2016-05-05 日期时间如:2016-05-05 12:11:11

to_time()函数注释

折叠PHP 代码
  1. function to_time($datetime)  
  2. {  
  3.       
  4.     //2010-06-23  
  5.     //10个长度正好是上边的长度  
  6.     //下面给补充了空格 时 分 秒  
  7.     if(strlen($datetime)==10)  
  8.     {  
  9.         $datetime.=" 00:00:00";  
  10.     }  
  11.       
  12.     //以空格分割了日期和时间  
  13.     //0日期  
  14.     //1时间  
  15.     $r=explode(" ",$datetime);  
  16.       
  17.     //以连接线分割了日期  
  18.     //0年  
  19.     //1月  
  20.     //2日  
  21.     $t=explode("-",$r[0]);  
  22.       
  23.     //以英文冒号分割时间  
  24.     //0小时  
  25.     //1分钟  
  26.     //2秒钟  
  27.     $k=explode(":",$r[1]);  
  28.       
  29.     //mktime() 函数返回一个日期的 Unix 时间戳  
  30.     //mktime(hour,minute,second,month,day,year,is_dst)  
  31.     //参数总是表示 GMT 日期,因此 is_dst 对结果没有影响  
  32.     //GMT=Greenwich mean time 格林尼治标准时间  
  33.     //is_dst 自从php5.1.0就被废弃了  
  34.     $dbtime=@mktime($k[0],$k[1],$k[2],$t[1],$t[2],$t[0]);  
  35.       
  36.     //返回UNIX时间戳  
  37.     return $dbtime;  
  38. }  
 

 

Tags: 函数   时间戳
cms大学,为帝国cms用户提供动力
Copyright © 2016 CmsDX.com All Rights Reserved.