-5

我有以下链接,它提供了产品列表。但我无法在 PHP 数组中获取这些产品如何获取这些产品。请给我一些想法。

网址 - https://www.rudolphs-christmasshop.com.au/api/v2/products/

4

1 回答 1

0

从 URL 获取 XML 的方法有很多——也许最简单的方法是使用simplexml_load_file

$xml = simplexml_load_file($url);
print_r($xml);

$url您的 URL显然在哪里。您可以将用户名和密码添加到 URL 中,例如http://username:password@url/

或者您可以使用cURL然后simplexml_load_string来解析结果:

$ch = curl_init();

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);  
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_USERPWD, $username . ':' . $password);
$result = curl_exec($ch);
curl_close($ch);

$xml = simplexml_load_string($result);
于 2012-11-16T12:34:57.623 回答