华域联盟 PHP laravel 时间格式转时间戳的例子

laravel 时间格式转时间戳的例子

数据渲染到模板经常用到日期格式。而数据库一般保存时间戳。每次更新或查询都要做转换。

使用Eloquent 自动转换 

<?php
 
namespace App\Model;
 
use Illuminate\Database\Eloquent\Model;
 
class Goods extends Model
{
 
  public function setStartTimeAttribute($value)
  {
    $this->attributes['start_time'] = is_int($value) ? $value : strtotime($value);
  }
 
  public function getStartTimeAttribute()
  {
    return date('Y-m-d H:i:s', $this->attributes['start_time']);
  }
}

方法名称应与被转换字段名称相同

以上这篇laravel 时间格式转时间戳的例子就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持华域联盟。

您可能感兴趣的文章:

本文由 华域联盟 原创撰写:华域联盟 » laravel 时间格式转时间戳的例子

转载请保留出处和原文链接:https://www.cnhackhy.com/64409.htm

本文来自网络,不代表华域联盟立场,转载请注明出处。

作者: sterben

发表回复

联系我们

联系我们

2551209778

在线咨询: QQ交谈

邮箱: [email protected]

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部