在 laravel 中获取 Unix 时间戳

Get Unix timestamp in laravel

我将 created_at 和 updated_at 存储为 unix 时间戳

为此,我将以下行添加到我的模式中,它工作正常。

class Test extends Model
{
    protected $dateFormat = 'U';

    protected $fillable = [
        'user_id','question_id','answer',
    ];
}

但问题是当我检索记录时,它给我可读格式而不是 unix 时间戳,所以我如何在数据库中存储值,即(1593624368)。 在数据库中,我对 created_at 和 updated_at

使用 int(11) 数据类型
created_at: 2020-07-01T17:45:03.000000Z,
updated_at: 2020-07-02T08:53:14.000000Z,

你可以用 Laravel Date Casting

针对您的情况:

/**
 * The attributes that should be cast.
 *
 * @var array
 */
protected $casts = [
    'created_at' => 'timestamp',
    'updated_at' => 'timestamp',
];