use Illuminate\Support\Facades\Cache; public function hc(){ $value= $this->type(); Cache::put('key01', $value,60);//存入 $data = Cache::get('key01');读取 dd ( $data); }