-5
我有以下鏈接,它給出了產品列表。 但我無法在PHP數組中獲取這些產品如何獲取這些產品。 請給我一些想法。取回產品網址
URL- https://www.rudolphs-christmasshop.com.au/api/v2/products/
我有以下鏈接,它給出了產品列表。 但我無法在PHP數組中獲取這些產品如何獲取這些產品。 請給我一些想法。取回產品網址
URL- https://www.rudolphs-christmasshop.com.au/api/v2/products/
有很多方法來從URL獲取XML - 也許是最簡單的使用simplexml_load_file
:
$xml = simplexml_load_file($url);
print_r($xml);
在哪裏顯然$url
是您的網址。您可以添加用戶名和密碼的網址類似http://username:[email protected]/
或者你可以使用cURL然後simplexml_load_string解析結果:
XML格式$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);
感謝它的工作 – banjali
數據。你是怎麼試圖抓取它的? –
爲我們提供該頁面的數據或登錄詳細信息的粘貼。沒有他們中的任何一個都沒有人可以幫助你 – Chris