PHP-加载所有动态内容后获取页面内容 [英] PHP - Get page content after all dynamic content has been loaded

查看:64
本文介绍了PHP-加载所有动态内容后获取页面内容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我尝试获取此页面的源代码: https://www.assetstore.unity3d.com/en/
我想解析一个项目右侧的最高付费"框,但是当我使用file_get_contents或以下代码时,我没有获得正确的源代码.

I try to get the source code of this page: https://www.assetstore.unity3d.com/en/
I would like to parse the "Top Paid" box on the right side for a little project, but when I use file_get_contents or the following code, I do not get the proper source code.

$cookie = tmpfile();
$userAgent = 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.64 Safari/537.31' ;

$ch = curl_init('https://www.assetstore.unity3d.com/en/');

$options = array(
    CURLOPT_CONNECTTIMEOUT => 20 ,
    CURLOPT_USERAGENT => $userAgent,
    CURLOPT_AUTOREFERER => true,
    CURLOPT_FOLLOWLOCATION => true,
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_COOKIEFILE => $cookie,
    CURLOPT_COOKIEJAR => $cookie ,
    CURLOPT_SSL_VERIFYPEER => 0 ,
    CURLOPT_SSL_VERIFYHOST => 0 ,
    CURLOPT_TIMEOUT => 10
);

curl_setopt_array($ch, $options);
$kl = curl_exec($ch);
curl_close($ch);
echo $kl;
?>

返回:

<div id="assetstore">
    <section id="content-panels">
        <div id="adminarea"></div>
        <div id="downloadarea" class="outer-content">
            <div class="flex">
                <div id="packagelistUI"></div>
                <div id="packagelist"></div>
            </div>
        </div>
        <div id="contentarea">
            <div id="content" class="main">
                <section id="mainContent"></section>
            </div>
        </div>
    </section>
</div>

但付费框"位于"mainContent"部分中.我将如何获得此代码?

But the Top Paid Box is inside the "mainContent" section. How would I reach this code?

已解决感谢Pramod,现在这是我的代码:

SOLVED Thanks to Pramod, this is my code now:

<?php
// An example of using php-webdriver.

require_once('lib/__init__.php');

// start Firefox with 5 second timeout
$host = 'http://localhost:4444/wd/hub'; // this is the default
$capabilities = DesiredCapabilities::firefox();
$driver = RemoteWebDriver::create($host, $capabilities, 5000);

// navigate to 'http://docs.seleniumhq.org/'
$driver->get('https://www.assetstore.unity3d.com/en/');

// adding cookie
$driver->manage()->deleteAllCookies();
$driver->manage()->addCookie(array(
  'name' => 'cookie_name',
  'value' => 'cookie_value',
));
$cookies = $driver->manage()->getCookies();

// wait at most 10 seconds until at least one result is shown
$driver->wait(10)->until(
  WebDriverExpectedCondition::presenceOfAllElementsLocatedBy(
    WebDriverBy::className('top-list')
  )
);

$sString = $driver->getPageSource();

// close the Firefox
$driver->quit();
print_r($sString);

推荐答案

我认为您尝试获取的页面正在使用javascript加载内容.当我们使用file_get_contents时,将不会执行javascript,因此不会加载页面内容.

I think the page you trying to fetch is using javascript, to load the content. When we are using file_get_contents the javascript will not be executed and so the page contents will not be loaded.

我们可以用php硒读取此类页面.

We can selenium with php for reading such pages.

https://github.com/facebook/php-webdriver

请参阅上面的链接.

谢谢

普拉莫特

这篇关于PHP-加载所有动态内容后获取页面内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆