php DomXML扩展使用示例

前端之家收集整理的这篇文章主要介绍了php DomXML扩展使用示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
PHP使用DomXML扩展的方法,感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编来看看吧。
经测试代码如下:

/**
 * 使用DomXML扩展的方法
 *
 * @param 
 * @arrange (512.笔记) jb51.cc
 **/
$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>';


/***   来自编程之家 jb51.cc(jb51.cc)   ***/
原文链接:https://www.f2er.com/php/528994.html

猜你在找的PHP相关文章