我正在使用“ simple_html_dom.php ”从维基百科站点中删除数据。如果我在scraperwiki.com中运行代码,它会抛出退出状态 139的错误 ,如果在我的 xampp 服务器中运行相同的代码,则服务器挂起。
- 我有一组链接
- 我正在尝试从所有网站获取识字价值
- 如果我用一个链接运行代码没有问题,它会返回预期的结果
- 如果我尝试一次从所有站点获取数据,我将面临上述问题
代码是:
<?php
$test=array
(
0 => "http://en.wikipedia.org/wiki/Andhra_Pradesh",
1 => "http://en.wikipedia.org/wiki/Arunachal_Pradesh",
2 => "http://en.wikipedia.org/wiki/Assam",
3 => "http://en.wikipedia.org/wiki/Bihar",
4 => "http://en.wikipedia.org/wiki/Chhattisgarh",
5 => "http://en.wikipedia.org/wiki/Goa",
for($ix=0;$ix<=9;$ix++){
$content = file_get_html($test[$ix]);
$tables = $content ->find('#mw-content-text table',0);
foreach ($tables ->children() as $child1) {
foreach($child1->find('th a') as $ele){
if($ele->innertext=="Literacy"){
foreach($child1->find('td') as $ele1){
echo $ele1->innertext;
}}} }}
指导我哪里错了。是不是内存问题???有没有xampp配置???