无法从视图访问时间助手
<?php echo $time->timeAgoInWords($row['Forum']['modified']); ?>
我从中接收数据的修改列的格式为 MySQL 日期时间。
我试图使用上面的代码来获取使用 timeAgoInWords()
格式显示的时间值,但我不断收到此错误。
未定义的属性:时间 [APP\views\forums\view.ctp,第 60 行]
我不明白为什么会收到此错误。
<?php echo $time->timeAgoInWords($row['Forum']['modified']); ?>
The modified column from which I am receiving the data is formatted as MySQL datetime.
I am trying to use the above code to get a time value shown formatted with timeAgoInWords()
, but I keep getting this error.
Undefined property: time [APP\views\forums\view.ctp, line 60]
I don't understand why I am getting this error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的控制器或 app_controller 中,放入以下代码,
In Your controller or app_controller, Put below code,