简单 html dom load_file returns 数组
simple html dom load_file returns array
我有一个奇怪的问题。我使用 Simple Html Dom 库已有一段时间了,但尝试加载某个页面总是 return 数组中的内容,而不是 HTML。我被难住了。
这是代码:
$target_url = "https://www.bol.com/nl/p/foscam-fi9928p-1080p-ptz-dome/9200000075190022/prijsoverzicht/";
$html->load_file($target_url);
echo "$html";
我还尝试了 file_get_contents
和 file_get_html
,并尝试使用 cURL 库;他们都是return一个数组。
此外,它似乎只发生在这些概览页面上,而不是产品页面本身。
原因大概是bol.com returns JSON.
Content-Type: application/json;charset=UTF-8
我有一个奇怪的问题。我使用 Simple Html Dom 库已有一段时间了,但尝试加载某个页面总是 return 数组中的内容,而不是 HTML。我被难住了。
这是代码:
$target_url = "https://www.bol.com/nl/p/foscam-fi9928p-1080p-ptz-dome/9200000075190022/prijsoverzicht/";
$html->load_file($target_url);
echo "$html";
我还尝试了 file_get_contents
和 file_get_html
,并尝试使用 cURL 库;他们都是return一个数组。
此外,它似乎只发生在这些概览页面上,而不是产品页面本身。
原因大概是bol.com returns JSON.
Content-Type: application/json;charset=UTF-8