donglian1523 2013-05-11 04:25
浏览 47
已采纳

Foreach循环嵌套在For循环问题中

I have a script that parses through 23 pages of a page and grabs the names of a directory, However the connection resets and times out. Is it because of this nest foreachloop in the for loop?

<?php

header('Content-type: text/html; charset=utf-8'); // this just makes sure encoding is      right
 include('simple_html_dom.php'); // the parser library

// you were trying to parse the wrong link.. your previous link did not have <div> tag with commentText class .. I chose a random link.. choose link for whichever professor you like or grab the links of professor from previous page store it in an array and loopr through them to get comments
 $i=1;
for($i; $i < 23;$i++){
$html = file_get_html("http://www.ratemyprofessors.com/SelectTeacher.jsp?sid=834&pageNo=$i"); // the url for the teacher rating profile

 //your div tag has class "comment" not "commentText"
foreach($html->find("div[class=profName]") as $content){
 echo $content->plaintext;
 echo "<br >";  
  }
 } 


?>
  • 写回答

1条回答 默认 最新

  • dongzj2015 2013-05-11 11:02
    关注

    I suggest you use YQL, It's pretty fast and would prevent your IP from getting black-listed...

    Using it with PHP is fairly simple - look here.

    Best of luck !

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?