时间:2021-07-01 10:21:17 帮助过:37人阅读
代码如下:
include_once('simple_html_dom.php');
代码如下:
// Create a DOM object from a string
$html = str_get_html('
代码如下:
// Find all anchors, returns a array of element objects
$ret = $html->find('a');
// Find (N)th anchor, returns element object or null if not found (zero based)
$ret = $html->find('a', 0);
// Find lastest anchor, returns element object or null if not found (zero based)
$ret = $html->find('a', -1);
// Find all with the id attribute
$ret = $html->find('div[id]');
// Find all which attribute id=foo
$ret = $html->find('div[id=foo]');
代码如下:
// Find all text blocks
$es = $html->find('text');
// Find all comment () blocks
$es = $html->find('comment');
代码如下:
// Example
echo $html->find("#div1", 0)->children(1)->children(1)->children(2)->id;
// or
echo $html->getElementById("div1")->childNodes(1)->childNodes(1)->childNodes(2)->getAttribute('id');
以上就介绍了http://www.google.com.hk/ 用php解析html的实现代码,包括了http://www.google.com.hk/方面的内容,希望对PHP教程有兴趣的朋友有所帮助。