使用PHP刮取页面的Channel Advisor数量

时间:2012-06-01 05:40:52

标签: php

我正在尝试提取ChannelAdvisor库存清单的页码,但它总是输出EMPTY。

这是我的代码:

 <?php
$url = "https://merchant.channeladvisor.com/AM/MyInventory/View_Inventory.aspx?apid=32001263";
$str = file_get_contents($url);

preg_match('/<span id="Surround_ctl00_Surround_Content_Paging_ctl00_l1">&nbsp;of (.*?)<\/span>&nbsp;/',$str,$as);
var_dump($as);
?>

我正在尝试提取340 ..

1 个答案:

答案 0 :(得分:0)

您可能想要调查Curl,您尝试访问的地址是HTTPS并需要身份验证。这可能是您没有收到任何数据的原因。

PHP CURL