0

ページからタイトルと画像を取得する簡単な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="&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 に答える