日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

PHP的simplexml_load_string

發布時間:2024/9/19 48 豆豆
生活随笔 收集整理的這篇文章主要介紹了 PHP的simplexml_load_string 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

1.簡述

simplexml_load_string() 函數把 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);

?

總結

以上是生活随笔為你收集整理的PHP的simplexml_load_string的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。