码迷,mamicode.com
首页 > 其他好文 > 详细

关于TP5模板输出时间戳问题--A non well formed numeric value encountered

时间:2017-07-28 00:24:40      阅读:447      评论:0      收藏:0      [点我收藏+]

标签:sign   his   orm   min   时间   val   cti   images   tle   

  某日。因为一个项目。控制器我是这么写的

 1 /**
 2    * get admin/Picture/index
 3    * 显示所有图册信息
 4    * @return view
 5    */
 6     public function index()
 7     {
 8         $data = $this->model->getAllPicture();
 9        
10         // dump($data);
11         $this->assign(‘data‘,$data);
12         return view();
13     }

模型我是这么写的

1 /**
2   *  取得所有
3   */
4   public function getAllPicture(){
5       return Cache::tag(‘admin_cache_data‘)->remember(‘cache_picture‘,function(){
6             return Db(‘picture‘)->field(‘id,category_id,title,tags,download_count,picture_cover_url,preview_count,picture_details_id,status,update_time,sort‘)->select();
7       });
8   }

然后。报了这个错。

    A non well formed numeric value encountered

我心里一万个草泥马。。。

 

后来。过程很艰辛。。。

 

技术分享啥都别说了。在config.php加上这句。搞定。

 

参考:http://www.thinkphp.cn/topic/45698.html

 

关于TP5模板输出时间戳问题--A non well formed numeric value encountered

标签:sign   his   orm   min   时间   val   cti   images   tle   

原文地址:http://www.cnblogs.com/chenrunxuan/p/7247941.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!