我现在正在使用Laravel-5
并且我刚刚创建了一个名为test(test.json)的JSON
文件。我的问题是:
这是我尝试过的,这显然是错误的:
$string = file_get_contents("../json/test.json");
$json_file = json_decode($string, true);
非常感谢您的帮助!
答案 0 :(得分:29)
您可以将它存储在Laravel中的存储文件夹中:
$path = storage_path() . "/json/${filename}.json"; // ie: /var/www/laravel/app/storage/json/filename.json
$json = json_decode(file_get_contents($path), true);