码迷,mamicode.com
首页 > 其他好文 > 详细

strtotime 时间戳的用法

时间:2017-09-01 14:29:39      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:strtotime   time   成功   str   php   last   时间   返回   als   

若成功则返回时间戳,失败则返回 FALSE。 php 4+

<?php echo(strtotime("now") . "<br>");//当前时间 2017/9/1 13:33:41 echo(strtotime("5 September 2016") . "<br>");//2016/9/5 0:0:0 echo(strtotime("+5 hours") . "<br>");//2017/9/1 18:33:41 当前时间加5小时 echo(strtotime("+1 week") . "<br>");//当前时间 + 1周 echo(strtotime("+1 week 3 days 7 hours 5 seconds") . "<br>"); //当前时间 + 1周 + 3天 + 7小时 + 5秒 echo(strtotime("next Monday") . "<br>");//当前时间的下周一 echo(strtotime("last Sunday"));//当前时间的上周日 ?>

strtotime 时间戳的用法

标签:strtotime   time   成功   str   php   last   时间   返回   als   

原文地址:http://www.cnblogs.com/hanling/p/7462844.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!