当前位置: 软件>php软件
PHP Simple HTML DOM Parser
本文导语: 这是一个 PHP5 的 HTML 文档解析器,示例代码: // 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 . ''; // Find all links foreach($html->find('a') as $elemen...
这是一个 PHP5 的 HTML 文档解析器,示例代码:
// 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 . '
';
// Find all links
foreach($html->find('a') as $element)
echo $element->href . '
';