thinkphp5时间戳
Posted cwjdd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp5时间戳相关的知识,希望对你有一定的参考价值。
系统支持自动写入创建和更新的时间戳字段,有两种方式配置支持。
第一种方式,是在数据库配置文件中添加全局设置:
// 开启自动写入时间戳字段
‘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时间戳的主要内容,如果未能解决你的问题,请参考以下文章