码迷,mamicode.com
首页 > Web开发 > 详细

thinkphp5时间戳

时间:2019-09-04 15:01:26      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:pre   opera   方式   数据库配置   update   amp   prot   字段名   数据库   

系统支持自动写入创建和更新的时间戳字段,有两种方式配置支持。

第一种方式,是在数据库配置文件中添加全局设置:

// 开启自动写入时间戳字段
‘auto_timestamp‘ => true,

第二种是直接在单独的模型类里面设置:

protected $autoWriteTimestamp = true;

字段名默认创建时间字段为create_time,更新时间字段为update_time

$user = new User();
$user->name = ‘user‘;
$user->save();
echo $user->create_time;
echo $user->update_time;

支持的字段类型包括timestamp/datetime/int

 

thinkphp5时间戳

标签:pre   opera   方式   数据库配置   update   amp   prot   字段名   数据库   

原文地址:https://www.cnblogs.com/CWJDD/p/11459172.html

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