php Laravel mutator和日期格式的访问器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Laravel mutator和日期格式的访问器相关的知识,希望对你有一定的参考价值。

<?php

namespace App;

use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;

class ComplianceNoticeOfBreach extends Model
{
    public function setResponseDateAttribute($value)
    {
        $this->attributes['response_date'] = Carbon::createFromFormat('d/m/Y', $value)->toDateString();
    }
    
    public function getResponseDateAttribute($value)
    {
        $this->attributes['response_date'] = Carbon::createFromFormat('d/m/Y', $value)->toDateString();
    }
}

以上是关于php Laravel mutator和日期格式的访问器的主要内容,如果未能解决你的问题,请参考以下文章

php Laravel验证马来西亚的日期格式

text 在Laravel中使用Carbon格式化PHP中的日期字符串

使用 laravel 转换 vue js 中的日期格式

在 PHP Laravel 中的 SQL Server 中将字符串转换为日期数据类型

Laravel 5 如何在 select 子句中使用 Carbon 转换日期相关列?

在 php 中将 datepicker 字符串转换为简单的日期格式