我是YII框架的初学者,有谁知道如何安装此扩展程序?
http://www.yiiframework.com/extension/time/
如何安装此扩展程序未在其文档中说明。 我想将时间戳转换为格式“time ago”“1小时前”“2小时前”。
答案 0 :(得分:1)
我认为这是一个正常的课程。
复制扩展组件中的文件。 在你的config / main.php
中'import'=>array(
'application.models.*',
'application.components.*',//if Time.php in components
'ext.*', // if Time.php in extensions
),
使用
$variable = Time::timeAgoInWords($time)