我无法通过webscraper获取全部源代码-SIMPLE HTML DOM

时间:2018-08-29 20:17:16

标签: php simple-html-dom scraper

这是问题所在,我从网站(phillips.cz)抓取图像。我需要的图像在滑块中..如果我在页面上并单击以查看整个源代码,请将其复制到我的page.html中,然后从scraper.php刮取源代码,滑块中就有图像。

但是当我使用简单的html dom-代码

<?php
//header("Content-type:text/plaintext");

//Importing classes
require_once("simple_html_dom.php");
require_once("ProjektX.php");

//Creating instance of crawler
$cr = new Crawler();

//Here i have ID of products which i edit d
$lines = file("basic.txt");
$lines = array_unique($lines);
$lines = array_values($lines);

//Here im editing them
foreach($lines as $a) 
$odkazy[] = "https://www.philips.cz" . trim($a);


//For testing im trying to get just one product of 2000
$odkazy = $cr->oddo(0,1,$odkazy);


foreach($odkazy as $a) {

	$html = new simple_html_dom();
	$html->load_file("https://www.philips.cz/c-p/7022331PH/stolni-svitidlo");

		
}
//Outputing the html source code
echo($html);

?>

它将加载页面BUT,但不包含滑块图像。 回到我的问题-为什么只用源代码而不使用滑块? 如果您能引导我走上正确的道路。 这是我尝试获取该滑块图像的网址-https://www.philips.cz/c-p/7022331PH/stolni-svitidlo

0 个答案:

没有答案