PHP开发实例大全(提高卷) 中文完整pdf扫描版[244MB]
- // example of how to modify HTML contents
- include('simple_html_dom.php');
- // get DOM from URL or file
- $html = file_get_html('http://www.kuitao8.com/');
- foreach($html->find('img') as $e) {
- echo $e;
- }
- ?>
转载请注明:谷谷点程序 » php获取网页中的全部图片