tp5 model 的时间戳
单独在模型里面设置:(推荐)
protected $autoWriteTimestamp = true; // int 型 protected $autoWriteTimestamp = 'datetime'; // datetime 类型 protected $autoWriteTimestamp = false; // 关闭自动写入时间戳 protected $updateTime = false; // 只关闭自动写入update_time字段
在config中添加全局设置:
// 开启自动写入时间戳字段(官方手册这么说,自己并没有测试出来)
'auto_timestamp' => true, // 默认为int型
'auto_timestamp' => 'datetime', // datetime类
'auto_timestamp' => false,
// 关闭全局自动写入时间字段
如果数据表字段不是默认值(假设数据库字段名为create_at和update_at)
// 定义时间戳字段名 protected $createTime = 'create_at'; // 默认的字段为create_time 和 update_time protected $updateTime = 'update_at';