PHP simplexml_load_file() 函數(shù)
PHP simplexml_load_file() 函數(shù)
實(shí)例
轉(zhuǎn)換 XML 文件為 SimpleXMLElement 對(duì)象,然后輸出對(duì)象的鍵和元素:
<?php
$xml=simplexml_load_file("note.xml");
print_r($xml);
?>
$xml=simplexml_load_file("note.xml");
print_r($xml);
?>
運(yùn)行實(shí)例 ?
定義和用法
simplexml_load_file() 函數(shù)轉(zhuǎn)換指定的 XML 文件為 SimpleXMLElement 對(duì)象。
語法
simplexml_load_file(file,classname,options,ns,is_prefix);
參數(shù) | 描述 |
---|---|
file | 必需。規(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è)我們有如下的 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>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
實(shí)例 1
輸出 XML 文件中每個(gè)元素的數(shù)據(jù):
<?php
$xml=simplexml_load_file("note.xml");
echo $xml->to . "<br>";
echo $xml->from . "<br>";
echo $xml->heading . "<br>";
echo $xml->body;
?>
$xml=simplexml_load_file("note.xml");
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
$xml=simplexml_load_file("note.xml");
echo $xml->getName() . "<br>";
foreach($xml->children() as $child)
{
echo $child->getName() . ": " . $child . "<br>";
}
?>
$xml=simplexml_load_file("note.xml");
echo $xml->getName() . "<br>";
foreach($xml->children() as $child)
{
echo $child->getName() . ": " . $child . "<br>";
}
?>
運(yùn)行實(shí)例 ?

相關(guān)文章
- PHP 教程
- PHP echo 和 print 語句
- PHP 數(shù)據(jù)類型
- PHP Switch 語句
- PHP 超級(jí)全局變量
- PHP $_GET 變量
- PHP array_change_key_case() 函數(shù)
- PHP array_diff_uassoc() 函數(shù)
- PHP array_diff_ukey() 函數(shù)
- PHP array_fill() 函數(shù)
- PHP array_key_last() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_search() 函數(shù)
- PHP arsort() 函數(shù)
- PHP in_array() 函數(shù)
- PHP natsort() 函數(shù)
- PHP pos() 函數(shù)
- PHP sort() 函數(shù)
- PHP cURL 函數(shù)
- PHP 5 Directory 函數(shù)