ページからタイトルと画像を取得する簡単なphpスクレイプを設定しました
$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>">
値の部分だけが必要ですが、タイトルと画像よりも明らかに複雑です