我想像这样 strtotime dateformat - Fri Jun 15 05:38:11 +1000 2012 我该怎么做?基本上我需要对其进行strtotime,然后执行以下操作-$ago = time()-strtotime(Fri Jun 15 05:38:11 +1000 2012);
然后执行此操作-
$ago = $ago / (60*60*24);
echo $ago.' days ago';
所以我需要一件事 - strtotime(Fri Jun 15 05:38:11 +1000 2012) 它将根据需要工作。
如果这种类型的日期不能是strtotime,那么我该如何编辑它,所以它可能是strtotime?