'男', 2 => '女']; const SEX_MAN = 1; const SEX_WOMAN = 2; public function getSexTextAttr($value, $data) { return self::SEX[$data['sex']]; } public function getFamilyAttr($value, $data) { if (empty($value)) { return []; } else { return json_decode($value,true); } } }