class Article extends Model{
protected $table = 'Article';
protected $primaryKey = 'id';
// 自动维护时间
public $timestamps = true;
// 解除注释,将存储成时间戳格式
protected function getDateFormat(){ return time(); }
// 取出来的日期将变成时间戳格式
// protected function asDateTime($val){// return $val;// }
}
网友评论