我有一个简单的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="<iframe src="http://drunksportsfans.com/embedframe/537" frameborder=0 width=510 height=400 scrolling=no></iframe>">
我只需要值部分,但它显然比标题和图像更复杂
答案 0 :(得分:1)
这很简单:
$value_of_input = $html->find('input[name=
media_embed_code]',0) - &gt;值;