PHP attributes() 函數(shù)
PHP attributes() 函數(shù)
實例
返回 XML 的 body 元素的屬性和值:
<?php
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body date="2013-01-01" type="private">Don't forget me this weekend!</body>
</note>
XML;
$xml=simplexml_load_string($note);
foreach($xml->body[0]->attributes() as $a => $b)
{
echo $a,'="',$b,""<br>";
}
?>
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body date="2013-01-01" type="private">Don't forget me this weekend!</body>
</note>
XML;
$xml=simplexml_load_string($note);
foreach($xml->body[0]->attributes() as $a => $b)
{
echo $a,'="',$b,""<br>";
}
?>
運行實例 ?
定義和用法
attributes() 函數(shù)返回 XML 標(biāo)簽的屬性和值。
語法
attributes(ns,is_prefix);
參數(shù) | 描述 |
---|---|
ns | 可選。規(guī)定被檢索的屬性的命名空間。 |
is_prefix | 可選。規(guī)定一個布爾值。如果 ns 是前綴則為 TRUE,如果 ns 是 URI 則為 FALSE。默認(rèn)是 FALSE。 |
技術(shù)細(xì)節(jié)
返回值: | 如果成功則返回一個 SimpleXMLElement 對象。 |
---|---|
PHP 版本: | 5.0.1+ |

相關(guān)文章
- PHP 語法
- PHP $_GET 變量
- PHP 錯誤處理
- PHP 過濾器
- PHP JSON
- PHP array_intersect_assoc() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_replace() 函數(shù)
- PHP array_values() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP current() 函數(shù)
- PHP key() 函數(shù)
- PHP krsort() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP uasort() 函數(shù)
- PHP 5 Calendar 函數(shù)
- PHP HTTP 函數(shù)
- PHP 5 MySQLi 函數(shù)