본 글은 주로 PHP 파싱 xml 방법을 소개하고, PHP 파싱 XML 관련 기술을 예제 형식으로 자세히 분석하여 도움이 필요한 친구들이 참고할 수 있습니다
이 글에서는 php에서 xml을 파싱하는 방법을 예제 형식으로 자세히 설명하고 있습니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 분석은 다음과 같습니다.
books.xml 파일은 다음과 같습니다.
<?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. DOM 파싱 XML
<?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
파서를 생성하고 xml 데이터를 배열으로 구문 분석한 다음 파서를 해제한 다음에서 원하는 값을 추출합니다. 배열.
<?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. SAX 파서로 XML 읽기------XML 단순 API(SAX) 파서
아아아아
위 내용은 PHP 파싱 xml 메소드 예시(코드 포함) 상세 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!