PHP时间格式化,strtotime日期 加减,php获取当前时间的毫秒数
常用函数:
strtotime(); 强制转化成时间格式
date(); 格式化时间
常用时间格式:
24小时制
date('Y-m-d H:i:s', '2018-05-02 09:12:35');
12小时制
date('Y-n-d h:i:s', '2018-5-02 9:12:35');
//PHP 日期 加减 月数,天数,周数,小时,分,秒
//PHP 日期 加减 周
date("Y-m-d",strtotime("2013-11-12 +1 week"))
//PHP 日期 加减 天
date("Y-m-d",strtotime("2013-11-12 +1 day"))
//PHP 日期加减小时
date("Y-m-d h:i:s",strtotime("2013-11-12 12:12:12 +1 hour"))
//PHP 日期 加减 月数
date("Y-m-d",strtotime("2013-11-12 12:12:12 +1 month"))
//PHP 日期 加减 分
date("Y-m-d h:i:s",strtotime("2013-11-12 12:12:12 +1 minute"))
//PHP 日期 加减 秒
date("Y-m-d h:i:s",strtotime("2013-11-12 12:12:12 +1 second"))
//PHP计算两个时间差的方法
$startdate="2010-12-11 11:40:00";
$enddate="2012-12-12 11:45:09";
$date=floor((strtotime($enddate)-strtotime($startdate))/86400);
$hour=floor((strtotime($enddate)-strtotime($startdate))%86400/3600);
$minute=floor((strtotime($enddate)-strtotime($startdate))%86400/60);
$second=floor((strtotime($enddate)-strtotime($startdate))%86400%60);
echo $date."天<br>";
echo $hour."小时<br>";
echo $minute."分钟<br>";
echo $second."秒<br>";
php获取当前时间的毫秒数
php本身没有提供返回毫秒数的函数,但提供了microtime()方法,它会返回一个Array,包含两个元素:一个是秒数、一个是小数表示的毫秒数,我们可以通过此方法获取返回毫秒数,方法如下:
function getMillisecond() {
list($s1, $s2) = explode(' ', microtime());
return (float)sprintf('%.0f', (floatval($s1) + floatval($s2)) * 1000);
}