我已经在curlopt
回复上苦苦挣扎了一段时间,希望大家能给我一些指导。
请访问以下页面:https://niarthgin.com/api/result.php
这将使用curlopt
生成一个简单的响应。这是我用来获得这些结果的代码:
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://www.bungie.net/Platform/Destiny2/SearchDestinyPlayer/2/Niarthgin/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => array(
"cache-control: no-cache",
"postman-token: xxxx",
"x-api-key: xxxx"
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
?>
我想细分该回复,但我不知道该怎么做。例如,在该响应中,您有一个MembershipType
和一个displayName
等。我如何分别解析响应?就像我知道的那样,我可以使用json.parse()
来解析响应,但这只会解析给定的字符串。我希望能够按段来解析响应。
感谢您的阅读! :)