如何从远程页面获取iframe内容?

时间:2013-05-21 10:45:50

标签: php jquery parsing iframe simple-html-dom

我认为PHP没用,因为在执行php之后插入了iframe,或者我错了吗?

因此,我所知道的唯一解决方案是使用Javascript / jQuery。

E.g。如果JS与iframe在同一页面上,这将有效:

<html>
<head>
<title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
<script type="text/javascript">

  $(function() {
    var myContent = $("#iFrame").contents().find("#myContent")
  });

</script>
</head>
<body>
  <iframe src="mifile.html" id="iFrame" style="width:200px;height:70px;border:dotted 1px red" frameborder="0">
     <div id="myContent">
        iframe content blablabla
     </div>
  </iframe>
</body>
</html>

但是我使用Simple HTML DOM库来抓取远程网页,如:

$url = 'http://page-with-some-iframe.com/';
            $html = file_get_html( $url );

            // Find iframes and put them in an array
            $iframes_arr = array();
            foreach($html->find('iframe') as $element) {
                $iframes_arr[] = $element->outertext;
            }
var_dump($iframes_arr);
die();

但显然,没有返回任何内容;(因为在运行php之后会显示iframe;(

所以,我想我可能需要注入这段代码:

<script type="text/javascript">

  $(function() {
    var myContent = $("#iFrame").contents().find("#myContent")
  });

</script>

在我抓取的页面的标题中,存储在$ html中。

任何想法如何获得iframe内容,或者这种过于复杂的方法和一些更简单的解决方案确实存在?

2 个答案:

答案 0 :(得分:4)

由于原始政策相同,您将无法使用javascript访问iframe内的远程页面文档。

如果你知道页面的URL,你可以使用PHP CURL来检索它

<?php 
        // Initialise a cURL object
        $ch = curl_init(); 

        // Set url and other options
        curl_setopt($ch, CURLOPT_URL, "http://page-with-some-iframe.com");
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 

        // Get the page contents
        $output = curl_exec($ch); 

        // close curl resource to free up system resources 
        curl_close($ch);  

答案 1 :(得分:1)

由于安全政策,这是不可能的。 如果您能够获取远程iframe的内容 - 您可以轻松窃取某人的Facebook或银行数据。这就是为什么所有的网络浏览器阻止它。