PHP simplexml_load_string() 函數(shù)
實(shí)例
轉(zhuǎn)換形式良好的 XML 字符串為 SimpleXMLElement 對象,然后輸出對象的鍵和元素:
?php
$note=XML
note>
to>Tove/to>
from>Jani/from>
heading>Reminder/heading>
body>Don't forget me this weekend!/body>
/note>
XML;
$xml=simplexml_load_string($note);
print_r($xml);
?>
定義和用法
simplexml_load_string()
函數(shù)轉(zhuǎn)換形式良好的 XML 字符串為 SimpleXMLElement 對象。
語法
simplexml_load_string( _data,classname,options,ns,is_prefix_ );
實(shí)例 1
輸出 XML 字符串中每個(gè)元素的數(shù)據(jù):
?php
$note=XML
note>
to>Tove/to>
from>Jani/from>
heading>Reminder/heading>
body>Don't forget me this weekend!/body>
/note>
XML;
$xml=simplexml_load_string($note);
echo $xml->to . "br>";
echo $xml->from . "br>";
echo $xml->heading . "br>";
echo $xml->body;
?>
實(shí)例 2
輸出 XML 字符串中每個(gè)子節(jié)點(diǎn)的元素名稱和數(shù)據(jù):
?php
$note=XML
note>
to>Tove/to>
from>Jani/from>
heading>Reminder/heading>
body>Don't forget me this weekend!/body>
/note>
XML;
$xml=simplexml_load_string($note);
echo $xml->getName() . "br>";
foreach($xml->children() as $child)
{
echo $child->getName() . ": " . $child . "br>";
}
?>
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請查看下面相關(guān)鏈接
您可能感興趣的文章:- PHP安裝memcache擴(kuò)展的步驟講解
- PHP配置ZendOpcache插件加速
- PHP convert_uudecode()函數(shù)講解
- PHP安裝BCMath擴(kuò)展的方法
- PHP convert_cyr_string()函數(shù)講解
- PHP chunk_split()函數(shù)講解
- PHP chr()函數(shù)講解
- PHP chop()函數(shù)講解
- PHP bin2hex()函數(shù)基礎(chǔ)實(shí)例講解
- PHP count_chars()函數(shù)講解