我想使用PHP函数 simplexml_load_file 将此API解释为一个对象: https://api.justimmo.at/rest/v1/
如您所见,它是受保护的(HTTP-Auth),只有输入正确的用户名和密码(我当然知道),您才能访问。
我想做这样的事情:
$url = "https://api.justimmo.at/rest/v1/";
$xml = simplexml_load_file($url);
$status = $xml->status;
if ($status == 'OK') {
$apple = $xml->one->two->apple;
$banana = $xml->one->two->banana;
};
那么我如何才能在脚本中获得访问权限?
我真的迷路了:/非常感谢!!