php 读取xml
作者:会飞的
<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<url>
<loc>http://www.xinge360.com/</loc>
<lastmod>2010-11-13T09:36:00+00:00</lastmod>
<changefreq>weekly</changefreq>
<priority>1.00</priority>
</url>
<url>
<loc>http://www.xinge360.com/login/login.asp</loc>
<lastmod>2010-11-13T09:36:00+00:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.80</priority>
</url>
<url>
<loc>http://www.xinge360.com/login/register.asp</loc>
<lastmod>2010-11-13T09:36:00+00:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.64</priority>
</url>
<url>
<loc>http://www.xinge360.com/accounts/get_password.asp</loc>
<lastmod>2010-11-13T09:36:00+00:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.64</priority>
</url>
<url>
<loc>http://www.xinge360.com/index_sendfriend.asp</loc>
<lastmod>2010-11-13T09:36:00+00:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.64</priority>
</url>
<url>
<loc>http://www.xinge360.com/linkurl/</loc>
<lastmod>2010-11-13T09:36:00+00:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.64</priority>
</url>
<url>
<loc>http://www.xinge360.com/sitemap.html</loc>
<lastmod>2010-11-13T09:36:00+00:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.64</priority>
</url>
<url>
<loc>http://www.xinge360.com/login/term.asp</loc>
<lastmod>2010-11-13T09:36:00+00:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.51</priority>
</url>
</urlset>
<?php
$doc = new DOMDocument();
$doc->load( 'test.xml' );
$urls = $doc->getElementsByTagName( "url" );
foreach( $urls as $url )
{
$locs = $url->getElementsByTagName( "loc" );
$loc = $locs->item(0)->nodeValue;
$lastmods = $url->getElementsByTagName( "lastmod" );
$lastmod = $lastmods->item(0)->nodeValue;
$changefreqs = $url->getElementsByTagName( "changefreq" );
$changefreq = $changefreqs->item(0)->nodeValue;
$prioritys = $url->getElementsByTagName( "priority" );
$priority = $prioritys->item(0)->nodeValue;
echo "网址:$loc - 时间$lastmod - 周$changefreq
";
}
?>
猜你喜欢
您可能感兴趣的文章:
- 网站优化知识手册:Google惩罚篇
- 网站优化知识手册:链接篇
- 网站优化中,链接就像填不满的黑洞
- 网站优化中如何选择链接锚文本
- 为什么网站优化是必要的网络营销方式
- 为什么要选择做网站优化
- 无形的网站优化
- 一个网站优化项目需要做哪些工作
- 站点地图与网站优化 网站地图的四个好处
- 做好整站优化才是真正的网站优化
- 做搜索引擎优化其实不单单考虑搜索引擎的算法
- ISSET()、empty()、is_numeric()的使用方法
- 排序算法
- 40个技巧优化您的PHP代码
- Access to the requested object is only available from the local network.
- ISSET()、empty()、is_numeric()使用方法
- ob_get_contents() 函数的用法
- PHP OOP思想
- PHP XML Expat 解析器