Maison > Article > développement back-end > Exemple de méthode XML d'analyse PHP (avec code) description détaillée
Cet article présente la méthode d'analyse PHP xml et analyse en détail les techniques associées d'analyse XML PHP sous forme d'exemples. Les amis dans le besoin peuvent s'y référer <.>
Cet article décrit en détail la méthode d'analyse du XML en php sous forme d'exemples. Partagez-le avec tout le monde pour votre référence. L'analyse spécifique est la suivante : le fichier books.xml est le suivant :<?xml version="1.0" encoding="ISO-8859-1"?> <bookstore> <book category="children"> <title lang="en">Harry Potter</title> <author>J K. Rowling</author> <year>2005</year> <price>29.99</price> </book> <book category="cooking"> <title lang="en">Everyday Italian</title> <author>Giada De Laurentiis</author> <year>2005</year> <price>30.00</price> </book> <book category="web" cover="paperback"> <title lang="en">Learning XML</title> <author>Erik T. Ray</author> <year>2003</year> <price>39.95</price> </book> </bookstore>1.
<?php //创建一个DOMDocument对象 $doc=new DOMDocument(); //加载XML文件 $doc->load("books.xml"); //获取所有的book标签 $bookDom=$doc->getElementsByTagName("book"); foreach($bookDom as $book){ $title = $book->getElementsByTagName("title")->item(0)->nodeValue; $author = $book->getElementsByTagName("author")->item(0)->nodeValue; $year = $book->getElementsByTagName("year")->item(0)->nodeValue; $price = $book->getElementsByTagName("price")->item(0)->nodeValue; echo "title:".$title."<br>"; echo "author:".$author."<br>"; echo "year:".$year."<br>"; echo "price:".$price ."<br>"; echo "***********************************<br>"; } ?>
2. xml_parse_into_struct
crée un analyseur, analyse les données XML dans le
tableau, libère l'analyseur et puis l'extrait de la valeur souhaitée du tableau.
<?php // 读取xml文件 $file = "books.xml"; $data = file_get_contents($file); // 创建解析器 $parser = xml_parser_create(); // 将 XML 数据解析到数组中 xml_parse_into_struct($parser, $data, $vals, $index); // 释放解析器 xml_parser_free($parser); // 数组处理 $arr = array(); $t=0; foreach($vals as $value) { $type = $value['type']; $tag = $value['tag']; $level = $value['level']; $attributes = isset($value['attributes'])?$value['attributes']:""; $val = isset($value['value'])?$value['value']:""; switch ($type) { case 'open': if ($attributes != "" || $val != "") { $arr[$t]['tag'] = $tag; $arr[$t]['attributes'] = $attributes; $arr[$t]['level'] = $level; $t++; } break; case "complete": if ($attributes != "" || $val != "") { $arr[$t]['tag'] = $tag; $arr[$t]['attributes'] = $attributes; $arr[$t]['val'] = $val; $arr[$t]['level'] = $level; $t++; } break; } } echo "<pre class="brush:php;toolbar:false">"; print_r($arr); echo ""; ?>
3. Lire XML avec l'analyseur SAX -----XML Simple
API<?php $file="books.xml"; $xml = simplexml_load_file($file); echo "<pre class="brush:php;toolbar:false">"; print_r($xml); echo ""; ?>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!