这篇文章主要为大家详细介绍了PHP时间戳 strtotime()使用的简单示例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小玲来看看吧!
在php中我想要获取时间戳有多种方法,最常用的就是使用time函数与strtotime()函数把日期转换成时间戳了,下面我来给大家分享一下时间戳函数 strtotime用法。代码如下:
<?php
/* 四海网 www.q1010.com */
echo strtotime('2012-12-7'); //结果:1354838400 ?>
代码如下:
<?php
/* 四海网 www.q1010.com */
echo $time=intval(time()); ?>
代码如下:
<?php
/* 四海网 www.q1010.com */
echo date("Y-m-d H:i:s",intval(time()));
?>
代码如下:
<?php
/* 四海网 www.q1010.com */
/*
from:https://www.q1010.com
@date:2013-02-22
*/
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";
?>
本文来自:http://www.q1010.com/173/14666-0.html
注:关于PHP时间戳 strtotime()使用的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。