PHP框架 Laravel Eloquent ORM 批量插入数据,创建时间 00000000000
大家讲道理
大家讲道理 2017-05-16 16:55:45
0
3
801
foreach ($products as $v=>$a)
{
    $count[] = array('product_name' => $a['name'], 'product_weight' => $a['weight'], 'product_id' => $a['pid'], 'product_price' => $a['price'], 'order_id' => $order->id, 'card_phone' => $user->phone);
}
CountOrder::insert($count);

在使用 laravel 的批量插入数据时,

插入的数据的创建时间却都是 0000000;

创建时间 和 更新时间字段 如何正常保存呢 ,难道也要在数组里面写入吗?

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

全部回复(3)
黄舟

雷雷 雷雷

小葫芦

其实可以使用save()

$this->fill($count)->save();

我的laravel教程专栏:/u/biaoyansu/blogs

大家讲道理

laravel 默认维护created_at updated_at 需要在模型中声明 public $timestamps = false; 默认是true

class Student extends Model
{
    protected $table = 'student';//指定表名
    //protected $primaryKey = 'id';//id
    //自动维护时间戳 默认是true;
    //public $timestamps = false;

    protected function getDateFormat()
    {
        return time();//return当前时间戳
        //输出的时候已经帮我们格式化了不想格式化需加函数asDateTime()
    }

   /* protected function asDateTime($val)
    {
        return $val;//将$val  return回去 不做任何处理就不会格式化了
    }*/
}
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板