Blogger Information
Blog 29
fans 0
comment 0
visits 35013
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP关于时间的函数和用法总结
小臣
Original
485 people have browsed it

实例

<?php
/*
	PHP 时间方法
 */

// 获得时区
echo date_default_timezone_get(); // PRC
// 设置时区
// PRC  中国时区
date_default_timezone_set("PRC");
echo '<br/>';
// 返回当前时间的 Unix 时间戳。 秒数
echo time(),'<br/>';
// date() 函数 格式化日期和时间
// 注释:请注意 PHP date() 函数会返回服务器的当前日期/时间!
// 当前日期
echo date('Y-m-d H:i:s');
echo '<br/>';
// 时间
echo date('h:i:s-a'),'<br/>';
// 创建时间 mktime()
// mktime(hour,minute,second,month,day,year)
$d=mktime(9, 12, 30, 6, 10, 2015);
echo "创建日期是: " . date("Y-m-d h:i:sa", $d);
echo '<br/>';
// strtotime() 用字符串转为时间戳
echo strtotime(date('Y-m-d H:i:s'));
echo '<br/>';

// 获取一天前
echo '前一天:',date('Y-m-d H',strtotime('-1 day'));
echo '<br/>';
echo '下周一:',date('Y-m-d H:i:s',strtotime("next Monday"));
echo '<br/>';

运行实例 »

点击 "运行实例" 按钮查看在线实例


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post