我正在尝试使用file_get_contents
列出网页内容的内容。网页类型似乎是ashx
?
但是,如果我使用http://stackoverflow.com/questions/3629504/php-file-get-contents-very-slow-when-using-full-url
等网址。它的工作原理
代码
$lines = file_get_contents('http://finviz.com/screener.ashx?v=321&f=sh_price_u1&r=11');
echo $lines;
答案 0 :(得分:1)
请尝试下面的代码,文件长度应该增加
请找到函数load()并调用它,
<?php
$url = "http://finviz.com/screener.ashx?v=321&f=sh_price_u1&r=1";
$result = load($url,$options);
print_r($result);
?>