Home  >  Article  >  Backend Development  >  php reads and writes xml

php reads and writes xml

WBOY
WBOYOriginal
2016-08-08 09:24:571068browse

Read xml information

test. Modify node:

<?xml version="1.0" encoding="UTF-8"?>
<class>
	<student>
		<name>张三</name>
		<age>23</age>
		<intro>努力学习</intro>
	</student>
	<student>
		<name>李四</name>
		<age>23</age>
		<intro>努力学习</intro>
	</student>
</class>

The above introduces how to read and write XML in PHP, including the relevant aspects. I hope it will be helpful to friends who are interested in PHP tutorials.

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
Previous article:php—Smarty-4 (21)Next article:php—Smarty-4 (21)