从JSON格式的字符串转换为可下载的JSON文件

时间:2014-08-09 19:54:09

标签: php html json laravel

我从数组开始:

$arr = array(
        0 => array(
            'name' => Input::get('symptom'),
            'amount' => 5,
            'time' => '2:00 am',
            'date' => '10.26.96',
            'type' => 'symptom',
        )

我将其保存给用户:

$user = Auth::user();
$user->json = json_encode($arr);

然后下载:

<form method="get" action="json.json">
    <button type="submit">Download!</button>
</form>

如何让用户下载Auth::user()->json?的内容 任何帮助表示赞赏!

PS我正在使用Laravel,但我不知道这是否重要。

1 个答案:

答案 0 :(得分:1)

首先创建一个文件,然后将此路径设置如下

$user = Auth::user();
$user->json = json_encode($arr);
$path = public_path('json.json');
$file = File::put($path,$user->json);
return Response::download($path);