PHP的simplexml_load_file
生活随笔
收集整理的這篇文章主要介紹了
PHP的simplexml_load_file
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1.簡述
simplexml_load_file() 函數把 XML 文檔載入對象中。
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!" }?
總結
以上是生活随笔為你收集整理的PHP的simplexml_load_file的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: PHP的simplexml_load_s
- 下一篇: BUG继承类