当我想使用循环foreach将json数组解析为php对象时出现错误。
这是我的错误:
警告:为中的foreach()提供了无效的参数 C:\ xampp \ htdocs \ testJSON \ crul_json.php,第49行
然后这是我的代码
<?php
function http_request($url){
// persiapkan curl
$ch = curl_init();
// set url
curl_setopt($ch, CURLOPT_URL, $url);
// set user agent
curl_setopt($ch,CURLOPT_USERAGENT,'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13');
// return the transfer as a string
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// $output contains the output string
$output = curl_exec($ch);
// tutup curl
curl_close($ch);
// mengembalikan hasil curl
return $output;
}
$profile = http_request("http://localhost/testWebService/");
//json_output(400, $profile);
$json_format = json_encode($profile);
//echo $json_format;
// ubah string JSON menjadi array
$hasil = json_decode($json_format, TRUE);
$hdcode = var_dump($hasil);
?>
<!DOCTYPE html>
<html>
<head>
<title>Curl Data JSON</title>
</head>
<body>
<br>
<p>
<?php
foreach ($hasil as $i):
?>
Nama: <?php echo $hasil->id_mhs; ?><br>
<?php endforeach;?>
</p>
</body>
</html>
有人可以帮助我解决无效循环的此错误吗? 谢谢:)
答案 0 :(得分:0)
是来自Web服务JSON的响应吗?如果是这样,您无需对其进行json_encode。
此外,由于将true作为第二个参数传递给json_decode,因此它将是数组而不是对象。您可以致电
$hasil = json_decode($json_format);
获取对象。
在您的foreach中,您还需要使用$i
而不是$hasil
。