php date如何转换时间戳-LMLPHP

推荐:《PHP视频教程

使用strotime函数,代码如下;

<?php
echo strtotime("now"), "\n";
echo strtotime("10 September 2000"), "\n";
echo strtotime("+1 day"), "\n";
echo strtotime("+1 week"), "\n";
echo strtotime("+1 week 2 days 4 hours 2 seconds"), "\n";
echo strtotime("next Thursday"), "\n";
echo strtotime("last Monday"), "\n";
echo strtotime("20170808 23:00:01"), "\n";
?>
登录后复制

php date如何转换时间戳-LMLPHP

扩展资料:

PHP strtotime() 函数

1.strtotime,可以将美国英语格式时间字符串转换的函数。

2.strtotime()可以用英语的自然语言创建某个时刻的时间戳

3.函数语法:int strtotime(string $time[,int $now])

4.函数作用:将美国英语格式的日期时间字符串转换成unix时间戳。

以上就是php date如何转换时间戳的详细内容,更多请关注Work网其它相关文章!

09-08 22:55