我对 php 很陌生(实际上我几乎一无所知),我正在尝试在网站上显示 JSON 字符串中的对象(可能不是正确的术语,但你知道......我是新手。 ..)。这是我正在使用的 cURL 代码:
$url="http://mc.gl:8081/?JSONSERVER=lobby";
// Initiate curl
$ch = curl_init();
// Disable SSL verification
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
// Will return the response, if false it print the response
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Set the url
curl_setopt($ch, CURLOPT_URL,$url);
// Execute
$result=curl_exec($ch);
然后我有这个应该做的事情(我真的不明白)
// Will dump a beauty json :3
var_dump(json_decode($result));
Annnnnddd....接下来我该怎么做?我做了很多谷歌搜索,但似乎没有任何效果。这是我应该得到的字符串:
{"lobby":{"playeramount":1,"players":{"MisterErwin":"MisterErwin"}},"API-Version":"1","return":true}
我想呼应“ playeramount ”。
任何帮助将不胜感激!非常感谢!