0
点赞
收藏
分享

微信扫一扫

PHP strtotime() 函数将任何英文文本的日期或时间描述解析为 Unix 时间戳(自 January 1 1970 00:00:00 GMT 起的秒数)。

书坊尚 2022-08-22 阅读 71


 

PHP strtotime() 函数将任何英文文本的日期或时间描述解析为 Unix 时间戳(自 January 1 1970 00:00:00 GMT 起的秒数)。

<!DOCTYPE html>
<html>
<body>

<?php
echo(strtotime("now") . "<br>");
echo(strtotime("5 September 2016") . "<br>");
echo(strtotime("+5 hours") . "<br>");
echo(strtotime("+1 week") . "<br>");
echo(strtotime("+1 week 3 days 7 hours 5 seconds") . "<br>");
echo(strtotime("next Monday") . "<br>");
echo(strtotime("last Sunday"));
?>

</body>
</html>

输出结果:

1557134122
1473004800
1557152122
1557738922
1558023327
1557676800
1556985600

 

举报

相关推荐

0 条评论