当我http://rest.example.com/account/get-balance/27e3xxx/7vvU4c95trfxxxx
在浏览器中输入并回车时,我得到以下 XML 响应。
<?xml version = "1.0" encoding = "UTF-8" standalone = "yes" ?>
<accountBalance>
<creditLimit>0.0</creditLimit>
<quotaEnabled>true</quotaEnabled>
<value>2.0</value>
</accountBalance>
但是当我在 PHP 中尝试相同的 URL 时,它会发送未找到的响应页面(哎呀!那个页面不存在。)。以下是我尝试的几种方法...
使用 SimpleXML
$content = simplexml_load_file($this->request_uri);
使用文件方法
$content = file_get_contents($this->request_uri);
使用卷曲
// create a new cURL resource
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, $this->request_uri);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt($ch, CURLOPT_HEADER, 0);
// grab URL and pass it to the browser
$content = curl_exec($ch);
// close cURL resource, and free up system resources
curl_close($ch);
$this->request_uri
= 我在浏览器中粘贴的相同 URL。我哪里错了?请帮助我。谢谢你。