一、UNIX时间戳
公司主营业务:网站设计制作、做网站、移动网站开发等业务。帮助企业客户真正实现互联网宣传,提高企业的竞争能力。成都创新互联是一支青春激扬、勤奋敬业、活力青春激扬、勤奋敬业、活力澎湃、和谐高效的团队。公司秉承以“开放、自由、严谨、自律”为核心的企业文化,感谢他们对我们的高要求,感谢他们从不同领域给我们带来的挑战,让我们激情的团队有机会用头脑与智慧不断的给客户带来惊喜。成都创新互联推出叠彩免费做网站回馈大家。以32位的整数表示格林威治标准时间。UNIX时间戳是从1970年1月1日零点开始起到当前时间所经历的秒数。
1、将日期和时间转变成UNIX时间戳
(1)mktime()函数
echo date("Y-m-d-h-m-s",mktime(12,10,56,12,67,2016))."\n";
?>
(2)strtotime()函数
echo date("Y-m-d",strtotime("now"))."
";
echo date("Y-m-d",strtotime("10 may 2014"))."
";
echo date("Y-m-d",strtotime("+2 day"))."
";
echo date("Y-m-d",strtotime("last monday"));
?>
(3)实例:用strtotime()函数编写一个纪念日的倒计时程序
$now=strtotime("now");
$endtime=strtotime("2018-6-19 23:59:59");
$second=$endtime-$now;
$year=floor($second/60/60/24/365);
$temp=$second-$year*365*24*60*60;
$month=floor($temp/60/60/24/30);
$temp=$temp-$month*30*24*60*60;
$day=floor($temp/60/60/24);
$temp=$temp-$day*24*60*60;
$hour=floor($temp/60/60);
$temp=$temp-$hour*60*60;
$minute=floor($temp/60);
$second1=$temp-$minute*60;
echo "距离大学毕业还有".$year."年".$month."月".$day."日".$hour."小时".$minute."分".$second1."秒";
2、日期的计算
//在PHP脚本中接收HTML表单用户提交的出生日期,计算这个用户的年龄
$year=1992;
$month=11;
$day=2;
$birthday=mktime(0,0,0,$month,$day,$year); //将出生日期转变为UNIX时间戳
$nowdate=time();
$ageunix=$nowdate-$birthday;
$age=floor($ageunix/60/60/24/365);
echo "您的年龄是".$age."岁";
?>
二、在PHP中获取日期和时间
三、修改PHP默认时区
四、使用微秒计算PHP脚本执行时间
//使用微秒计算PHP脚本执行时间
class Timer{
private $startTime=0;
private $stopTime=0;
function start(){
$this->startTime=microtime(true);
}
function stop(){
$this->stopTime=microtime(true);
}
function spent(){
return round(($this->stopTime-$this->startTime),4);
}
}
$Timer=new Timer();
$Timer->start();
usleep(2000);
$Timer->stop();
echo "执行该脚本用时".$Timer->spent()."秒";
?>
五、日历类
另外有需要云服务器可以了解下创新互联cdcxhl.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。