echo time();//输出结果:1332224315
echo date(DATE_RFC822);//输出结果:Tue, 20 Mar 12 06:18:35 +0000
如果需要其他的时间格式,可以参考w3school上的Date()函数 *** 作手册,地址: >
php的date()方法获取的时间跟实际时间相差8个小时
因为在php的配置文件中datetimezone =默认是为空,则时间获取是从0时区的时间,中国是在东八区,所以相差八个小时
public function index(){
$data=time();
$format='星期';
$week = date( "D",$data);
switch($week){
case "Mon":$current = $format"一";break;
case "Tue":$current = $format"二";break;
case "Wed":$current = $format"三";break;
case "Thu":$current = $format"四";break;
case "Fri":$current = $format"五";break;
case "Sat":$current = $format"六";break;
case "Sun":$current = $format"日";break;
}
echo '今天是:'$current;echo "
";//获取当前时间是上午还是下午
// 小写g、h表示12小时制,大写G、H表示24小时制。
echo "现在是"date("H",$data)'点'"";
echo "现在是"date("G",$data)'点'"";
if(date("H",$data)<=12){echo "上午";}else{echo "下午";}// return $current;}
[Date]
; Defines the default timezone used by the date functions
; >
第一种方法,在phpini中设置时区 datetimezone = PRC
第二种,用php函数去设置date_default_timezone_set('PRC');//PRC就是“中华人民共和国”
以上就是关于php获取UTC时间戳全部的内容,包括:php获取UTC时间戳、急!php如何获取当前页面运行的时间、php中time()和date()函数获取时间与本地不一致的问题等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)