我有一个循环 3 次的 for 循环,在循环内,ashell_exec()
完成,调用二进制文件phantomjs
并返回其输出。然后将此输出传递到 simplehtmldom 的str_get_html()
问题:当str_get_html($html)
涉及到for循环并且$html
由网页的HTML组成时,只执行第一个循环,而不是第二个或第三个循环。但是,如果我要使用一些简单的<a>
标签 for $html
, for 循环会完全迭代!
这里发生了什么,我该如何解决?
请注意下面 2 个函数的区别(一个有效,一个只循环一次)是其中一个将一行注释掉,另一个将另一行注释掉。
父函数 (for
这里的循环没有完全迭代)
public function action_asos() {
// Site details
$base_url = "http://www.mysite.com";
// Category details
$category_id = 7616;
$per_page = 500;
// Find number of pages in category
$num_pages = 2;
//THIS IS THE LOOP THAT CANNOT LOOP COMPLETELY!
// Extract Product URLs from Category page
for($i = 0; $i <= $num_pages; $i++) {
echo "<h2>Page $i</h2>";
$page = $i;
$category_url = 'http://www.mysite.com/pgecategory.aspx?cid='.$category_id.'&parentID=-1&pge='.$page.'&pgeSize='.$per_page.'&sort=1';
$this->extract_product_urls($category_url, $base_url);
}
echo "Yes.";
flush();
}
PHP 代码(导致父函数中的循环只循环一次)
public function extract_product_urls($category_url, $base_url) {
set_time_limit(300);
include_once('/home/mysite/public_html/application/libraries/simple_html_dom.php');
// Retrieve page HTML using PhantomJS
$html = $this->get_html($category_url);
// Extract links
$html = str_get_html($html);
//$html = str_get_html('<a class="productImageLink" href="asdasd"></a>');
foreach($html->find('.productImageLink') as $match) {
$product_url = $base_url . $match->href;
$product_url = substr($product_url, 0, strpos($product_url, '&')); // remove metadata in URL string
$this->product_urls[] = $product_url;
}
echo "done.";
flush();
}
辅助函数
/**
* Gets the webpage's HTML (after AJAX contented has loaded, using PhantonJS)
* @return [type] [description]
*/
public function get_html($url) {
$url = escapeshellarg($url); // prevent truncating after characters like `&`
$script = path('base')."application/phantomjs/httpget.js";
$output = shell_exec("phantomjs $script $url");
return $output;
}