thinkphp5 模板时间格式化

thinkphp5 在模板输出格式化的时间。
一、模板标签里格式化
{{$add_time|date=’y-m-d’,###}}
二、模型里格式化输出

use think\Model;
class Task extends Model
{
    protected $autoWriteTimestamp = true;
    protected $pk = 'id';
//这里,下面
    protected $type = [
        'add_time' => 'timestamp',
    ];
}

前台输出的时候,直接输出 {{$add_time}}即可。

You May Also Like

About the Author: 萌新

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注