Laravel-5
を使用していますが、test(test.json)というJSON
ファイルを作成しました。私の質問は:
これは私が試したもので、明らかに間違っています:
$string = file_get_contents("../json/test.json");
$json_file = json_decode($string, true);
助けてくれてありがとう!
Laravelのストレージフォルダーに保存できます。
$path = storage_path() . "/json/${filename}.json"; // ie: /var/www/laravel/app/storage/json/filename.json
$json = json_decode(file_get_contents($path), true);