file system 悩み事 ファイルの内容を取得したい 解決方法 File::get() メソッドを利用します $contents = \File::get($filename); アドバイス ファイルが見つからない場合は例外が返却されます 具体的には Illuminate\Filesystem\FileNotFoundException がスローされます try/catchを利用して、エラーを捕捉する様にしましょう try { $contents = \File::get($filename); } catch (\Illuminate\Filesystem\FileNotFoundException $exception) { die("ファイルがありません"); } Author:Chuck Heintzelman Editor and Translator:Yuuki Take