当前位置:首页 > CMS教程 > Thinkphp > 列表

thinkphp5.1框架实现格式化mysql时间戳为日期的方式小结

发布:smiling 来源: PHP粉丝网  添加日期:2021-12-29 09:39:07 浏览: 评论:0 

本文实例讲述了thinkphp5.1框架实现格式化mysql时间戳为日期的方式,分享给大家供大家参考,具体如下:

方式一

使用mysql函数FROM_UNIXTIME(unix_timestamp,format)直接转换

select FROM_UNIXTIME(o.create_time,'%Y-%m-%d') create_time from table

方式二

使用模型获取器 withAttr, 在该方法中用date函数格式化

  1. ->field('*'
  2. ->withAttr('create_time',function ($value,$data) { 
  3.     return date("Y-m-d H:i",$value); 
  4.    }) 
  5. ->select() 

thinkphp5.1时间戳 mysql

方式三

使用模型的自动时间戳,开启后会默认自动转换create_time和update_time两个字段的值

第一种方式是全局开启,在数据库配置文件中进行设置:

  1. // 开启自动写入时间戳字段 
  2. 'auto_timestamp' => true, 
  3. // 时间字段取出后的默认时间格式 
  4. 'datetime_format' => 'Y-m-d H:i:s'

第二种是在需要的模型类里面单独开启:

  1. <?php 
  2. namespace app\index\model; 
  3. use think\Model; 
  4. class User extends Model 
  5.  protected $autoWriteTimestamp = true; 

方法四

forerch 循环里 date函数格式化

Tags: thinkphp5 1时间戳 mysql

分享到: