PHP Laravel timestamps 设置为unix时间戳的方法

michael · 2019-10-11 14:30:46 · 热度: 24

Laravel 修改 timestamps 为 unix 时间戳

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

/**
 * Class Test
 * @package App
 */
class Test extends Model
{
  /**
   * @var string
   */
  protected $table='test';
  /**
   * @var array
   */
  protected $fillable = [
    'name', 'tel'
  ];

  /**
   * @param \DateTime|int $value
   * @return false|int
   * @author dividez
   */
  public function fromDateTime($value){
    return strtotime(parent::fromDateTime($value));
  }
}

这样修改以后 laravel 依然会自动维护 created_at 和 updated_at

在我们取出 created_at 这个字段依然会为我们转换为 Carbon 类型

猜你喜欢:
暂无回复。
需要 登录 后方可回复, 如果你还没有账号请点击这里 注册