码迷,mamicode.com
首页 > 其他好文 > 详细

tp6 model状态自动转换

时间:2020-03-25 01:23:38      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:gets   end   控制器   stat   输出   color   ext   get   user   

<?php

namespace  app\model;
use think\Model;
class User1 extends   Model
{
        public function getStatusTextAttr($value,$data){

            $status = [
                ‘1‘=>‘正常‘,
                ‘2‘=>‘待审核‘,
                ‘0‘=>‘删除‘
            ];
            return $status[$data[‘status‘]];
        }
}

  控制器输出

 dump($result[‘status_text‘]);

 

tp6 model状态自动转换

标签:gets   end   控制器   stat   输出   color   ext   get   user   

原文地址:https://www.cnblogs.com/aln0825/p/12563467.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!