getDateFormat创建后没有调用为什么会执行呢?
model层的getDateFormat怎么会调用?而且自己测试写的貌似并没有调用
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Student extends Model { //指定表名 protected $table = 'student'; //指定Id protected $primaryKey = 'id'; public $timestamps = false; protected function getDateFormat() { var_dump(111); return time(); } }
这里我关闭timestamps他会不调用getDateFormat, 我将这个置为true又会打印出111,哪个大佬能解释一下这是为什么吗