如何将Laravel中的时间格式转换成时间戳?

2026-04-01 07:251阅读0评论SEO教程
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计236个文字,预计阅读时间需要1分钟。

如何将Laravel中的时间格式转换成时间戳?

数据渲染到模板通常使用日期格式。而数据库一般保存时间戳。每次更新或查询都要做转换。使用Eloquent自动转换php namespace App\Model; use Illuminate\Database\Eloquent\Model; class Goods extends Model {

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

如何将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 时间格式转时间戳的例子就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持易盾网络。

本文共计236个文字,预计阅读时间需要1分钟。

如何将Laravel中的时间格式转换成时间戳?

数据渲染到模板通常使用日期格式。而数据库一般保存时间戳。每次更新或查询都要做转换。使用Eloquent自动转换php namespace App\Model; use Illuminate\Database\Eloquent\Model; class Goods extends Model {

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

如何将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 时间格式转时间戳的例子就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持易盾网络。