<?php include('simple_html_dom.php'); // Create DOM from URL or file $html = file_get_html('http://www.google.com/'); // Find all images foreach($html->find('img') as $element) echo $element->src . '<br>'; // Find all links foreach($html->find('a') as $element) echo $element->href . '<br>'; ?>以下のように表示されます。
images/hp0.gif
images/hp1.gif
images/hp2.gif
images/hp3.gif
http://www.google.co.jp/imghp?hl=ja&tab=wi
http://video.google.co.jp/?hl=ja&tab=wv
http://maps.google.co.jp/maps?hl=ja&tab=wl
http://news.google.co.jp/nwshp?hl=ja&tab=wn
http://books.google.co.jp/bkshp?hl=ja&tab=wp
........
0 件のコメント:
コメントを投稿