美文网首页
PHP strtotime() 函数

PHP strtotime() 函数

作者: Fa1se003 | 来源:发表于2016-05-20 12:54 被阅读95次

日常开发中我们经常会用到这个函数

定义和用法
strtotime() 函数将任何英文文本的日期时间描述解析为 Unix 时间戳。

语法: strtotime(time,now)

time:规定要解析的时间字符串。
now:用来计算返回值的时间戳。如果省略该参数,则使用当前时间。

  • 例子
<?php
echo(strtotime("now"));
echo(strtotime("3 October 2005"));
echo(strtotime("+5 hours"));
echo(strtotime("+1 week"));
echo(strtotime("+1 week 3 days 7 hours 5 seconds"));
echo(strtotime("next Monday"));
echo(strtotime("last Sunday"));
?>

time():返回当前时间的 Unix 时间戳。

//设置中国时区 
date_default_timezone_set('PRC');
echo date('Y-m-d H:i:s');//中国标准时间

相关文章

网友评论

      本文标题:PHP strtotime() 函数

      本文链接:https://www.haomeiwen.com/subject/xeknrttx.html