Laravel5 Json 获取文件内容

Laravel5 Json get file contents

我现在正在使用 Laravel-5,我刚刚创建了一个名为 test(test.json) 的 JSON 文件。我的问题是:

  1. 我的 JSON 文件应该放在哪里?
  2. 如何使用 file_get_contents 并指向我想要的那个文件?

这是我试过的,但显然是错误的:

$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);