Home >Backend Development >PHP Tutorial >PHP uses simplexml_load_file to load XML files and display XML_PHP tutorial

PHP uses simplexml_load_file to load XML files and display XML_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:02:181082browse

How PHP uses simplexml_load_file to load XML files and display XML

This article mainly introduces how PHP uses simplexml_load_file to load XML files and display XML. An example analysis of simplexml_load_file operation XML File skills are of great practical value. Friends who need them can refer to them

The example in this article describes how PHP uses simplexml_load_file to load XML files and display XML. Share it with everyone for your reference. The specific implementation method is as follows:

?

1

2

3

4

$xml = simplexml_load_file("sample.xml");

echo htmlspecialchars($xml->asXML());

?>

1 2

3

4

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

A

B

C

C

D

E

F

G

H

$xml = simplexml_load_file("sample.xml"); echo htmlspecialchars($xml->asXML());

?>

The content of the sample.xml file is as follows ?
1 2 3 4 5
6 7 8 9 10 11 12 13 14 15 16 17
A B C C D E F G H
I hope this article will be helpful to everyone’s PHP programming design. http://www.bkjia.com/PHPjc/970759.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/970759.htmlTechArticlephp uses simplexml_load_file to load XML files and display XML. This article mainly introduces how php uses simplexml_load_file to load XML files and display them. Method of displaying XML, example analysis simplexm...
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