ExpressionEngine发布的通道条目有多长

时间:2013-05-28 14:29:35

标签: expressionengine channel

我目前正在使用expressionengine构建博客。我想显示条目发布的时间。 我如何才能获得多少小时/天前的频道条目发布?

由于

1 个答案:

答案 0 :(得分:0)

我已经解决了这个问题,

在我的模板中,我允许PHP

然后我添加了我从http://css-tricks.com/snippets/php/time-ago-function/

找到的代码

但不使用功能,我不知道,但它给了我错误。直接到主要 像这样:

<?php
$time = strtotime("{entry_date format="%d %F %Y"}");
   $periods = array("Second", "Minute", "Hour", "Day", "Week", "Month", "Year", "Decade");
   $lengths = array("60","60","24","7","4.35","12","10");

   $now = time();

       $difference     = $now - $time;
       $tense         = "ago";

   for($j = 0; $difference >= $lengths[$j] && $j < count($lengths)-1; $j++) {
       $difference /= $lengths[$j];
   }

   $difference = round($difference);

   if($difference != 1) {
       $periods[$j].= "s";
   }

   echo "$difference $periods[$j] Ago";

?>

可以帮助另一个与我有同样问题的人