Home  >  Article  >  Backend Development  >  Briefly describe how php outputs xml attributes

Briefly describe how php outputs xml attributes

墨辰丷
墨辰丷Original
2018-06-12 13:44:011617browse

This article mainly introduces the method of PHP outputting XML attributes. It analyzes the usage skills of PHP's method of operating XML file attributes with examples. It has certain reference value. Friends in need can refer to it.

The examples of this article are described The method for php to output xml attributes. The specific analysis is as follows:

This code demonstrates through a simple example how php reads an xml file and outputs xml attributes

<?php
  $xml = simplexml_load_file("books.xml");
  foreach($xml->book[0]->author->attributes() AS $a => $b) {
   echo "$a = $b <br />";
  }
?>

xml file content is as follows

<library>
  <book>
   <title>A</title>
   <author gender="female">B</author>
   <description>C</description>
  </book>
  <book>
   <title>C</title>
   <author gender="male">D</author>
   <description>E</description>
  </book>
  <book>
   <title>F</title>
   <author gender="male">G</author>
   <description>H</description>
  </book>
</library>

Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study.

Related recommendations:

php method to shut down the computer with a mobile phone

phpHow to convert uppercase naming into underscore-delimited naming

php common processing methods for file downloads

The above is the detailed content of Briefly describe how php outputs xml attributes. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn