我打算上传一个JSON文件,然后使用laravel读取它。我认为有可能,但是我的代码无法正常工作
这是我的代码:
$json_file = $request->json_file;
$json_file->move("uploads/json",$json_file->getClientOriginalName());
$json_data = file_get_contents(env('APP_URL', '')."/uploads/json/".$json_file->getClientOriginalName());
echo $json_data;
$json_data = json_decode($json_data);
var_dump($json_data);
当我上传json文件时,我总是得到Maximum execution time of 60 seconds exceeded
。由于我的json文件包含
{
"prefix": "#",
"token": "46881dfsf",
"as_link": "http://mylink.com"
}
对我的案件有任何想法吗?