strtotime 回到 DateTime
strtotime back to DateTime
我正在通过 url 将 DateTime (2015-09-07T06:30:00+02:00) 发送到其他页面。
有人建议我这样做:
$eventDateStr ="2015-09-07T06:30:00+02:00";
$s = strtotime($eventDateStr);
....
echo '<a href="second.php?'.$s.'">Link</a>';
在第二页
这让我进入第二页,我在其中获取变量。
$s =$_GET['s']; //Gives 1441600200
有没有办法将变量 ($s) 从 strtotime 转换回 dateTime Atom 格式?这将在变量之后和变量中使用。
$unixtime = 1307595105;
echo $time = date("m/d/Y h:i:s A T",$unixtime);
取自:convert strtotime to date time format in php
我正在通过 url 将 DateTime (2015-09-07T06:30:00+02:00) 发送到其他页面。
有人建议我这样做:
$eventDateStr ="2015-09-07T06:30:00+02:00";
$s = strtotime($eventDateStr);
....
echo '<a href="second.php?'.$s.'">Link</a>';
在第二页
这让我进入第二页,我在其中获取变量。
$s =$_GET['s']; //Gives 1441600200
有没有办法将变量 ($s) 从 strtotime 转换回 dateTime Atom 格式?这将在变量之后和变量中使用。
$unixtime = 1307595105;
echo $time = date("m/d/Y h:i:s A T",$unixtime);
取自:convert strtotime to date time format in php