PHP xml_parse_into_struct() 函數
PHP xml_parse_into_struct() 函數

定義和用法
xml_parse_into_struct() 函數把 XML 數據解析到數組中。
該函數把 XML 數據解析到 2 個數組中:
- Value 數組 - 包含來自被解析的 XML 的數據
- Index 數組 - 包含指向 Value 數組中值的位置的指針
如果成功,該函數則返回 1。如果失敗,則返回 0。
語法
xml_parse_into_struct(parser,xml,value_arr,index_arr)
參數 | 描述 |
---|---|
parser | 必需。規定要使用的 XML 解析器。 |
xml | 必需。規定要解析的 XML 數據。 |
value_arr | 必需。規定 XML 數據的目標數組。 |
index_arr | 可選。規定 index 數據的目標數組。 |
提示和注釋
注釋:xml_parse_into_struct() 函數如果成功則返回 1,如果失敗則返回 0。這與 TRUE 和 FALSE 不同,使用例如 === 運算符時要注意。
實例
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>
PHP 代碼
<?php
//invalid xml file
$xmlfile = 'test.xml';
$xmlparser = xml_parser_create();
// open a file and read data
$fp = fopen($xmlfile, 'r');
$xmldata = fread($fp, 4096);
xml_parse_into_struct($xmlparser,$xmldata,$values);
xml_parser_free($xmlparser);
print_r($values);
?>
//invalid xml file
$xmlfile = 'test.xml';
$xmlparser = xml_parser_create();
// open a file and read data
$fp = fopen($xmlfile, 'r');
$xmldata = fread($fp, 4096);
xml_parse_into_struct($xmlparser,$xmldata,$values);
xml_parser_free($xmlparser);
print_r($values);
?>
上面代碼的輸出如下所示:
Array
(
[0] => Array
(
[tag] => NOTE
[type] => open
[level] => 1
[value] =>
)
[1] => Array
(
[tag] => TO
[type] => complete
[level] => 2
[value] => Tove
)
[2] => Array
(
[tag] => NOTE
[value] =>
[type] => cdata
[level] => 1
)
[3] => Array
(
[tag] => FROM
[type] => complete
[level] => 2
[value] => Jani
)
[4] => Array
(
[tag] => NOTE
[value] =>
[type] => cdata
[level] => 1
)
[5] => Array
(
[tag] => HEADING
[type] => complete
[level] => 2
[value] => Reminder
)
[6] => Array
(
[tag] => NOTE
[value] =>
[type] => cdata
[level] => 1
)
[7] => Array
(
[tag] => BODY
[type] => complete
[level] => 2
[value] => Don't forget me this weekend!
)
[8] => Array
(
[tag] => NOTE
[value] =>
[type] => cdata
[level] => 1
)
[9] => Array
(
[tag] => NOTE
[type] => close
[level] => 1
)
)
(
[0] => Array
(
[tag] => NOTE
[type] => open
[level] => 1
[value] =>
)
[1] => Array
(
[tag] => TO
[type] => complete
[level] => 2
[value] => Tove
)
[2] => Array
(
[tag] => NOTE
[value] =>
[type] => cdata
[level] => 1
)
[3] => Array
(
[tag] => FROM
[type] => complete
[level] => 2
[value] => Jani
)
[4] => Array
(
[tag] => NOTE
[value] =>
[type] => cdata
[level] => 1
)
[5] => Array
(
[tag] => HEADING
[type] => complete
[level] => 2
[value] => Reminder
)
[6] => Array
(
[tag] => NOTE
[value] =>
[type] => cdata
[level] => 1
)
[7] => Array
(
[tag] => BODY
[type] => complete
[level] => 2
[value] => Don't forget me this weekend!
)
[8] => Array
(
[tag] => NOTE
[value] =>
[type] => cdata
[level] => 1
)
[9] => Array
(
[tag] => NOTE
[type] => close
[level] => 1
)
)

相關文章
- PHP While 循環
- PHP For 循環
- PHP 魔術常量
- PHP Cookie
- PHP Secure E-mails
- PHP 過濾器
- PHP 高級過濾器
- PHP array() 函數
- PHP array_column() 函數
- PHP array_diff_assoc() 函數
- PHP array_intersect_key() 函數
- PHP array_sum() 函數
- PHP array_uintersect_uassoc() 函數
- PHP array_walk() 函數
- PHP current() 函數
- PHP natcasesort() 函數
- PHP next() 函數
- PHP reset() 函數
- PHP 5 Date/Time 函數
- PHP Filter 函數