PHP的simplexml_load_string
生活随笔
收集整理的這篇文章主要介紹了
PHP的simplexml_load_string
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
1.簡述
simplexml_load_string() 函數(shù)把 XML 字符串載入對象中。
2.例子
<?php $xmlstring = <<<XML <?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> XML;$xml = simplexml_load_string($xmlstring);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!" } $xml_obj = simplexml_load_string( $xml_data, 'SimpleXMLElement', LIBXML_NOCDATA);?
總結(jié)
以上是生活随笔為你收集整理的PHP的simplexml_load_string的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 你是我的眼歌曲原唱(你是我的眼歌曲)
- 下一篇: PHP的simplexml_load_f