0

我有一个简单的 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;">

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

4

1 回答 1

1

这很简单:

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

于 2013-07-31T22:21:18.867 回答