Scrape iframe嵌入代码

时间:2013-07-31 22:15:36

标签: php web-scraping

我有一个简单的php scrape,我已设法设置从页面上抓取标题和图像

$post=$_POST['post'];

$html = file_get_html($post);
$title = $html->find('h2', 1);
$imageurl = $html->find('img', 1); 

echo $title->plaintext."<br>\n";
echo $imageurl->src;

但我也试图抓住视频嵌入代码,它使用像这样的iframe

 <input type="text" name="media_embed_code" id="mediaEmbedCodeInput" size="110" onclick="this.focus();this.select();" value="&lt;iframe src=&quot;http://drunksportsfans.com/embedframe/537&quot; frameborder=0 width=510 height=400 scrolling=no&gt;&lt;/iframe&gt;">

我只需要值部分,但它显然比标题和图像更复杂

1 个答案:

答案 0 :(得分:1)

这很简单:

$value_of_input = $html->find('input[name= media_embed_code]',0) - &gt;值;