这篇文章主要为大家详细介绍了php DomXML扩展使用示例,具有一定的参考价值,可以用来参考一下。
php使用DomXML扩展的方法,感兴趣的小伙伴,下面一起跟随四海网的小编罗X来看看吧。
/**
* 使用DomXML扩展的方法
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
$html = '<html>
<head>
<title>links</title>
</head>
<body>
<a href="link1.htm" title="Link title 1" target="_blank">Link #1</a><br/>
<a href="link2.htm" title="Link title 2" target="_blank">Link #2</a><br/>
<a href="link3.htm" title="Link title 3" target="_blank">Link #3</a><br/>
</body>
</html>';
// check if DomXML is available
if (!function_exists('DomDocument')){
die('DomXML extension is not available :-(');
}
print '<pre>';
// create new DOM object:
$dom = new DomDocument();
// load HTML code:
$dom->loadHtml($html);
// get tags by tagname (all <a> tags / links):
$tags = $dom->getElementsByTagName('a');
// loop trough all links:
foreach ($tags as $a){
print '<b>' . $a->nodeValue . '</b><br/>';
// does this tag have attributes:
if ($a->hasAttributes()){
// loop trough all attributes:
foreach ($a->attributes as $attribute){
print '- ' . $attribute->name . ': ' . $attribute->value;
print "<br/>";
}
}
print "<hr/>";
}
print '</pre>';
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/305-0.html
注:关于php DomXML扩展使用示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:DomXML
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。