PHP _construct() 函數(shù)
實(shí)例
函數(shù)創(chuàng)建一個(gè)新的 SimpleXMLElement 對(duì)象,然后輸出 body 節(jié)點(diǎn)的內(nèi)容:
?php
$note=XML
note>
to>Tove/to>
from>Jani/from>
heading>Reminder/heading>
body>Don't forget me this weekend!/body>
/note>
XML;
$xml=new SimpleXMLElement($note);
echo $xml->body;
?>
[運(yùn)行實(shí)例»](/try/showphp.php?filename=demo_func_simplexml_construct)
定義和用法
_construct()
函數(shù)創(chuàng)建一個(gè)新的 SimpleXMLElement 對(duì)象。
語法
_construct( _data,options,data_is_url,ns,is_prefix_ );
假設(shè)我們有如下的 XML 文件,"note.xml":
?xml version="1.0" encoding="ISO-8859-1"?>
note>
to>Tove/to>
from>Jani/from>
heading>Reminder/heading>
body>Don't forget me this weekend!/body>
/note>
實(shí)例 1
從 URL 中創(chuàng)建一個(gè) SimpleXMLElement 對(duì)象:
?php
$xml=new SimpleXMLElement("note.xml",NULL,TRUE);
echo $xml->asXML();
?>
總結(jié)
以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對(duì)腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請(qǐng)查看下面相關(guān)鏈接
您可能感興趣的文章:- PHP count()函數(shù)講解
- PHP getDocNamespaces()函數(shù)講解
- PHP getName()函數(shù)講解
- PHP getNamespaces()函數(shù)講解
- PHP registerXPathNamespace()函數(shù)講解
- PHP children()函數(shù)講解
- PHP attributes()函數(shù)講解
- PHP asXML()函數(shù)講解
- PHP addAttribute()函數(shù)講解
- PHP simplexml_import_dom()函數(shù)講解