我正在尝试运行一个指向一个网址的网络抓取工具,它没有链接,代码似乎很好;但是,我收到了一个http 500错误。
它抓取的内容所做的就是回应它。
知道为什么吗?
<?php
error_reporting( E_ERROR );
define( "CRAWL_LIMIT_PER_DOMAIN", 50 );
$domains = array();
$urls = array();
function crawl( $url )
{
global $domains, $urls;
$parse = parse_url( $url );
$domains[ $parse['host'] ]++;
$urls[] = $url;
$content = file_get_contents( $url );
if ( $content === FALSE ){
echo "Error: No content";
return;
}
$content = stristr( $content, "body" );
preg_match_all( '/http:\/\/[^ "\']+/', $content, $matches );
// do something with content.
echo $content;
foreach( $matches[0] as $crawled_url ) {
$parse = parse_url( $crawled_url );
if ( count( $domains[ $parse['host'] ] ) < CRAWL_LIMIT_PER_DOMAIN && !in_array( $crawled_url, $urls ) ) {
sleep( 1 );
crawl( $crawled_url );
}
}
}
crawl(http://the-irf.com/hello/hello6.html);
?>
答案 0 :(得分:3)
替换:
crawl(http://the-irf.com/hello/hello6.html);
使用:
crawl('http://the-irf.com/hello/hello6.html');
URL是文本字符串,因此必须用引号括起来。
关于stristr的问题:
返回从第一次出现针头到结束的所有haystack。
所以,你的代码:
$content = stristr( $content, "body" );
将从$content
的第一次出现开始返回所有body
。