<?php echo strtotime('2018-10-21'); //结果:1540051200 ?>
时间比较:
<?php
//先转换成unix时间戳
$i=strtotime(date('Y-m-d H:i:s'));
$j=strtotime("2018-9-26 21:10:10");
//通过时间戳对比
if($i > $j) {
echo "今天时间大于:2018-9-26 21:10:10";
}else{
echo "今天时间小于:2018-9-26 21:10:10";
}
- 获取各种时间戳的一些示例
<?php
//1天前的当前时间的时间戳
echo strtotime("-1 day");
echo "<hr/>";
//7天前的当前时间的时间戳
echo strtotime("-7 day");
echo "<hr/>";
//30天前的当前时间的时间戳
echo strtotime("-30 day");
echo "<hr/>";
//1天后的当前时间的时间戳
echo strtotime("-1 day");
echo "<hr/>";
//7天后的当前时间的时间戳
echo strtotime("-7 day");
echo "<hr/>";
//30天后的当前时间的时间戳
echo strtotime("-30 day");
echo "<hr/>";
//上星期当前时间的时间戳
echo strtotime("-1 week");
echo "<hr/>";
//下星期当前时间的时间戳
echo strtotime("+1 week");
echo "<hr/>";
//指定上星期几的时间戳,这个时间戳是打印的上星期几0点的时间戳。
echo strtotime("last Thursday");
echo "<hr/>";
//指定下星期几的时间戳,这个时间戳是打印的下星期几0点的时间戳。
echo strtotime("next Thursday");
echo "<hr/>";
- 时间戳转换为日期时间格式:2018-10-20 09:40:25
<?php
echo date("Y-m-d H:i:s",strtotime("-1 day"));
最新评论
感谢
能不能屏蔽掉刷流量的,统计工具显示全部都是
路过学习了
好像不太行啊 加载不出来啊
好文章
是否可以 实现 判断手机端跳转 而网址不变呢
你好
感谢分享,我也遇到这个了,根据你的提示,屏蔽掉了