尝试从URL提取json,不起作用

时间:2019-07-17 12:44:53

标签: php

我正在尝试从PHP中的URL提取产品的json文件。我有以下代码,但无法正常工作。有人可以告诉我我哪里出问题了吗?

function getJson() {
$request = file_get_contents('https://3rdParty.guntrader.uk/ShootingSuppliesLtd/jsonGuns');
$json = json_decode($request);
return $json;
};

echo $json;

未定义的变量:C:\ Users \ darry \ dev \ VVV \ www \ ssheadless \ importJson.php在第36行中的json

1 个答案:

答案 0 :(得分:2)

您没有调用方法getJson()。如果不调用方法,则无法访问返回值。调用方法。

function getJson() {
    $request = file_get_contents('https://3rdParty.guntrader.uk/ShootingSuppliesLtd/jsonGuns');
    $json = json_decode($request);
    return $json;
};

echo getJson();