我有以下 PHP 代码,它打印出此链接中显示的结果:http: //www.visitrack.co.uk/testdata2.php
$json = "http://api.duedil.com/sandbox/v2/company/03977902.json fields=get_all&api_key=***";
$jsonfile = file_get_contents($json);
var_dump(json_decode($jsonfile,true));
我想要做的是将结果拆分为单个 php 变量。下面的代码是我的尝试,但它不会返回错误或任何结果。
$url="http://api.duedil.com/sandbox/v2/company/03977902.json?fields=get_all&api_key=2gwhy5py2zfdzpnf3ev3dsjs";
$json = file_get_contents($url); $response = json_decode($json, TRUE);
echo $requestId->Response->id->value;
任何建议,将不胜感激。谢谢