PHP output XML Properties method, PHP output XML
This article describes the PHP output XML properties method. Share to everyone for your reference. The specific analysis is as follows:
This code demonstrates how PHP reads an XML file and outputs XML attributes in a simple example
<?php $xml = simplexml_load_file ("books.xml"); foreach ($xml->book[0]->author->attributes () as $a = = $b) {
"; }? >
The contents of the XML file are
A B
C
C D
E
F G
H
I hope this article is helpful to everyone's PHP programming.
http://www.bkjia.com/PHPjc/970852.html www.bkjia.com true http://www.bkjia.com/PHPjc/970852.html techarticle PHP output XML properties of the method, PHP output XML This example describes the PHP output XML properties of the method. Share to everyone for your reference. The specific analysis is as follows: This code through a simple ...