PHP simplexml_load_string() 函數(shù)
PHP simplexml_load_string() 函數(shù)
實(shí)例
轉(zhuǎn)換形式良好的 XML 字符串為 SimpleXMLElement 對(duì)象,然后輸出對(duì)象的鍵和元素:
<?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);
?>
運(yùn)行實(shí)例 ?
定義和用法
simplexml_load_string() 函數(shù)轉(zhuǎn)換形式良好的 XML 字符串為 SimpleXMLElement 對(duì)象。
語(yǔ)法
simplexml_load_string(data,classname,options,ns,is_prefix);
參數(shù) | 描述 |
---|---|
data | 必需。規(guī)定形式良好的 XML 字符串。 |
classname | 可選。規(guī)定新對(duì)象的 class。 |
options | 可選。規(guī)定附加的 Libxml 參數(shù)。通過指定選項(xiàng)為 1 或 0(TRUE 或 FALSE,例如 LIBXML_NOBLANKS(1))進(jìn)行設(shè)置。 可能的值:
|
ns | 可選。規(guī)定命名空間前綴或 URI。 |
is_prefix | 可選。規(guī)定一個(gè)布爾值。如果 ns 是前綴則為 TRUE,如果 ns 是 URI 則為 FALSE。默認(rèn)是 FALSE。 |
技術(shù)細(xì)節(jié)
返回值: | 如果成功則返回 SimpleXMLElement 對(duì)象,如果失敗則返回 FALSE。 |
---|---|
PHP 版本: | 5+ |
更多實(shí)例
實(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;
?>
運(yùn)行實(shí)例 ?
實(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>";
}
?>
運(yùn)行實(shí)例 ?

相關(guān)文章
- PHP 變量
- PHP 數(shù)據(jù)類型
- PHP 命名空間 namespace
- PHP array_column() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_intersect_key() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_product() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP arsort() 函數(shù)
- PHP current() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP next() 函數(shù)
- PHP uksort() 函數(shù)
- PHP cURL 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP Error 和 Logging 函數(shù)