我试图计算从现在到给定时间之间的时间。但是当我使用时间跨度时,我得到了这个错误:
致命错误:在第54行的/Applications/MAMP/htdocs/VERSIE0.1/application/views/welcome_message.php中调用未定义的函数timespan() 遇到PHP错误 严重性:ErrorMessage:调用未定义的函数timespan()文件名:views / welcome_message.phpLine编号:54Backtrace:
<span class="time"><?php
$post_date = $t['story_date'];
$now = date('Y-m-d H:i:s');
echo timespan($post_date, $now);
?>
</span>
答案 0 :(得分:3)
试试这个
或者您可以使用此
答案 1 :(得分:2)
要使用timespan
功能,您需要加载其库helper
。
请务必写下:
$this->load->helper('date');
答案 2 :(得分:0)
正确答案是在您的视图文件中包含帮助程序。只需加载助手
$this->load->helper('date');
在您的视图中,而不是在控制器中。