getRegion(); if(! $region) { // 无缓存 $region = Region::column('id,name', 'id'); $regionCache->setRegion($region, 3600); } // 有缓存 if(is_array($val)) { // 数组 $temp = ''; foreach($val as $v) { $temp .= isset($region[$v]) ? $region[$v]['name'] : ''; } return $temp.$address; } // 非数组 return $region[$val]['name'] ?? ''; } }