用PHP读取XML
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用PHP读取XML相关的知识,希望对你有一定的参考价值。
simple :)
//xml.xml : <?xml version="1.0" encoding="utf-8" ?> <Kategorien> <Kategorie> <ID>1</ID> <Name>php</Name> <link>http://www.tsql.de/php.php</link> </Kategorie> <Kategorie> <ID>2</ID> <Name>SQL</Name> <link>http://www.tsql.de/transact-sql/howto.htm</link> </Kategorie> <Kategorie> <ID>3</ID> <Name>CSharp</Name> <link>http://tsql.de/csharp.htm</link> </Kategorie> </Kategorien> //xmlread.php : $Kategorien = simplexml_load_file('php-xml-lesen.xml'); echo $Kategorien->Kategorie[0]->Name.'<br />'; echo $Kategorien->Kategorie[0]->ID.'<br />'; echo $Kategorien->Kategorie[0]->link.'<br />';
以上是关于用PHP读取XML的主要内容,如果未能解决你的问题,请参考以下文章