php开发之时间跟日期的应用

WBOY
Release: 2016-06-13 12:16:54
Original
954 people have browsed it

php开发之时间和日期的应用

1,比较两个日期的大小
比较两个日期的大小,首先是将日期转换为时间戳,然后对时间戳进行比较。
具体示例代码如下:

$time1 =date("Y-m-d H:i:s");$time2 ="2009-12-9 4:40:12";echo "时间变量\$time1 的时间为:".$time1."\n";echo "时间变量\$time2 的时间为:".$time2."\n";if(Strtotime($time1)-strtotime($time2)<0){ echo "\$time1早于\$time2";}else{ echo "\$time2早于\$time1";}?>
Copy after login

运行结果如下:
这里写图片描述

2,实现页面脚本运行的时间
这里主要使用microtime()函数来实现,该函数返回当前UNIX时间戳和微秒数。返回格式为msec sec的字符串。其中sec为当前的UNIX时间戳,msec为微秒数。
语法格式如下:
string microtime(void)

示例代码如下:

function run_time(){ list($msec,$sec) =explode(" ",microtime()); //使用explode()函数返回两个变量 return((float)$msec + (float)$sec); //返回两个变量的和}$start =run_time(); //第一次运行run_time()函数for($i=0;$i<100000;$i++){}$end =run_time(); //再一次运行run_time()函数echo "运行的时间:".($end-$start)."\n";?>
Copy after login

这里写图片描述

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!