PHP的simplexml_load_file
生活随笔
收集整理的這篇文章主要介紹了
PHP的simplexml_load_file
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
1.簡(jiǎn)述
simplexml_load_file() 函數(shù)把 XML 文檔載入對(duì)象中。
2.例子
<?xml version="1.0" encoding="ISO-8859-1"?> <note> <to>George</to> <from>John</from> <heading>Reminder</heading> <body>Don't forget the meeting!</body> </note><?php if (file_exists('test.xml')){$xml = simplexml_load_file('test.xml');var_dump($xml);}?>object(SimpleXMLElement)#1 (4) { ["to"]=> string(4) "George" ["from"]=> string(4) "John" ["heading"]=> string(8) "Reminder" ["body"]=> string(29) "Don't forget the meeting!" }?
總結(jié)
以上是生活随笔為你收集整理的PHP的simplexml_load_file的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: PHP的simplexml_load_s
- 下一篇: 动态规划算法php,php算法学习之动态