相思资源网 Design By www.200059.com
使用strtotime可以将各种格式的时间字符串转换为时间戳
转换常规时间格式
echo date('Y-m-d H:i:s', strtotime('2016-01-30 18:00')).PHP_EOL; echo date('Y-m-d H:i:s', strtotime('20160130180001')).PHP_EOL;
转换自然时间描述
//昨天 echo date('Y-m-d H:i:s', strtotime('yesterday')).PHP_EOL; //上周 echo date('Y-m-d H:i:s', strtotime('last week')).PHP_EOL; //本周开始时间 echo date('Y-m-d H:i:s', strtotime('this week midnight')).PHP_EOL; //本月开始时间 echo date('Y-m-d H:i:s', strtotime('first day of this month midnight')).PHP_EOL; //计算相对时间 echo date('Y-m-d H:i:s', strtotime('+1 month')).PHP_EOL;
完整的php时间描述文档可以参考 http://php.net/manual/zh/datetime.formats.relative.php
相思资源网 Design By www.200059.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
相思资源网 Design By www.200059.com
暂无php强大的时间转换函数strtotime的评论...