您好,登錄后才能下訂單哦!
這篇文章主要介紹了PHP如何讀取XML文件,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
php的框架:1、Laravel,Laravel是一款免費并且開源的PHP應用框架。2、Phalcon,Phalcon是運行速度最快的一個PHP框架。3、Symfony,Symfony是一款為Web項目準備的PHP框架。4、Yii,Yii是一款快速、安全和專業的PHP框架。5、CodeIgniter,CodeIgniter是一款非常敏捷的開源PHP框架。6、CakePHP,CakePHP是一款老牌的PHP框架。7.Kohana,Kohana是一款敏捷但是功能強大的PHP框架。
具體如下:
使用DOMDocument對象讀取xml
創建一個DOMDocument對象
$doc = new DOMDocument();
載入xml文件
$doc->load("book.xml");
獲取標簽對象
$books = $doc->getElementsByTagName("book");
獲取標簽的子對象
$titles = $book->getElementsByTagName("title");
獲取標簽的值或屬性
$title = $titles->item(0)->nodeValue;
實例1,獲取圖書列表
book.xml
<?xml version="1.0" encoding="UTF-8"?> <bookstore> <book> <title>PHP和MySQL開發</title> <author>譚浩強</author> </book> <book> <titile>xml從入門到精通</titile> <author>鄭智化</author> </book> </bookstore>
load.php
<?php header("Content-type:text/html;charset=utf8"); $doc = new DOMDocument(); //創建DOMDocument對象 $doc->load("book.xml"); //打開book.xml $books = $doc->getElementsByTagName("book"); //獲取book標簽對象 foreach ($books as $book){ //遍歷對象 $titles = $book->getElementsByTagName("title"); //獲取book標簽下的title標簽 $title = $titles->item(0)->nodeValue; //獲取標簽的值 $authors = $book->getElementsByTagName("author");//獲取book標簽下的author標簽 $author = $authors->item(0)->nodeValue; //獲取標簽的值 $item["title"] = $title; $item["author"] = $author; $bookinfo[] = $item; } var_dump($bookinfo);
實例2,讀取配置文件
config.xml
<?xml version="1.0" encoding="UTF-8"?> <mysql> <host>127.0.0.1</host> <username>root</username> <password></password> <database>test</database> </mysql>
config.php
<?php header("Content-type:text/html;charset=utf8"); $doc = new DOMDocument(); //創建DOMDocument對象 $doc->load("config.xml"); //打開config.xml $mysql = $doc->getElementsByTagName("mysql"); //獲取mysql標簽對象 $host = $mysql->item(0)->getElementsByTagName("host"); $config["host"] = $host->item(0)->nodeValue; $username = $mysql->item(0)->getElementsByTagName("username"); $config["username"] = $username->item(0)->nodeValue; $password = $mysql->item(0)->getElementsByTagName("password"); $config["password"] = $password->item(0)->nodeValue; $database = $mysql->item(0)->getElementsByTagName("database"); $config["database"] = $database->item(0)->nodeValue; var_dump($config);
使用simplexml方法讀取xml
實例1,獲取圖書列表
load.php
<?php header("Content-type:text/html;charset=utf8"); $books = simplexml_load_file("book.xml"); foreach($books as $book){ $item["title"] = $book->title; $item["author"] = $book->author; $booklist[] = $item; } var_dump($booklist);
實例2,讀取配置文件
config.php
<?php header("Content-type:text/html;charset=utf8"); $mysql = simplexml_load_file("config.xml"); $config['host'] = $mysql->host; $config['username'] = $mysql->username; $config['password'] = $mysql->password; $config['databse'] = $mysql->database; var_dump($config);
感謝你能夠認真閱讀完這篇文章,希望小編分享的“PHP如何讀取XML文件”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。