php 中strtotime函数的问题
我不太理解这个函数<?php$days="5days";strtotime($days);$ppo=date('Y-m-d',strtotime($days));echo...
我不太理解这个函数
<?php
$days="5 days";
strtotime($days);
$ppo=date('Y-m-d',strtotime($days));
echo "<br>";
?>
我写的这个会直接输出5天后的格式日期
这个函数是自动想加减的吗
另外 下面这个外什么我得不到格式化 相加两天的效果呢
<?php
$n=strtotime('2 days');
$w=mktime();
echo "<br>";
echo $n+$w;
echo "<br>";
echo date('Y-m-d',($n+$w));
?>
谢谢帮助 我只有9的财富值 只能给5了 呵呵 展开
<?php
$days="5 days";
strtotime($days);
$ppo=date('Y-m-d',strtotime($days));
echo "<br>";
?>
我写的这个会直接输出5天后的格式日期
这个函数是自动想加减的吗
另外 下面这个外什么我得不到格式化 相加两天的效果呢
<?php
$n=strtotime('2 days');
$w=mktime();
echo "<br>";
echo $n+$w;
echo "<br>";
echo date('Y-m-d',($n+$w));
?>
谢谢帮助 我只有9的财富值 只能给5了 呵呵 展开
4个回答
展开全部
<?php
$time = time();
$time2 = time()+3600*24*2;
echo '两天后是'.date('Y-m-d H:i:s', $time2);
?>
$time = time();
$time2 = time()+3600*24*2;
echo '两天后是'.date('Y-m-d H:i:s', $time2);
?>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
管方网站的例子最有说明性:
地址:http://php.net/manual/en/function.strtotime.php
<?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";
?>
地址:http://php.net/manual/en/function.strtotime.php
<?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";
?>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<?php
$n=strtotime('2 days');
$w=time();
echo "<br>";
echo $a=$n+$w;
echo "<br>";
echo date('Y-m-d',$n)."<br>"; //两天后的时间戳
echo date('Y-m-d',$w)."<br>"; //今天的时间戳
echo date('Y-m-d',$a); //相加时间戳为什么得不到你的效果?
25424803621271326581
2010-04-15
2010-04-13
1914-06-20
我觉得你把从1970年到2010-04-13
+
1970年到2010-04-15 这两个庞大的时间戳的和, 绝对不是你认为的3天后
不该这么算。
?>
$n=strtotime('2 days');
$w=time();
echo "<br>";
echo $a=$n+$w;
echo "<br>";
echo date('Y-m-d',$n)."<br>"; //两天后的时间戳
echo date('Y-m-d',$w)."<br>"; //今天的时间戳
echo date('Y-m-d',$a); //相加时间戳为什么得不到你的效果?
25424803621271326581
2010-04-15
2010-04-13
1914-06-20
我觉得你把从1970年到2010-04-13
+
1970年到2010-04-15 这两个庞大的时间戳的和, 绝对不是你认为的3天后
不该这么算。
?>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询