PHP xml_set_processing_instruction_handler() 函數
PHP xml_set_processing_instruction_handler() 函數

定義和用法
xml_set_processing_instruction_handler() 函數規定當解析器在 XML 文檔中找到處理指令時被調用的函數。
處理指令包含在 <? 和 ?> 分隔符中,并且包含一個帶數據的目標。
實例:在本實例中,處理指令把一個樣式表和一個 XML 文檔關聯起來:
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet href="default.xsl" type="text/xml"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
<?xml-stylesheet href="default.xsl" type="text/xml"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
如果成功,該函數則返回 TRUE。如果失敗,則返回 FALSE。
語法
xml_set_processing_instruction_handler(parser,handler)
參數 | 描述 |
---|---|
parser | 必需。規定要使用的 XML 解析器。 |
handler | 必需。規定當解析器找到處理指令時被調用的函數。 |
由 "handler" 參數規定的函數必須有三個參數:
參數 | 描述 |
---|---|
parser | 必需。規定一個變量,包含調用處理器的 XML 解析器。 |
target | 必需。規定一個變量,包含處理指令目標。 |
data | 必需。規定一個變量,包含處理指令數據。 |
提示和注釋
注釋:handler 參數也可以是一個包含對象引用和方法名的數組。
實例
<?php
$parser=xml_parser_create();
function char($parser,$data)
{
echo $data;
}
function pi_handler($parser, $target, $data)
{
echo "Target: $target<br />";
echo "Data: $data<br />";
}
xml_set_character_data_handler($parser,"char");
xml_set_processing_instruction_handler($parser, "pi_handler");
$fp=fopen("test.xml","r");
while ($data=fread($fp,4096))
{
xml_parse($parser,$data,feof($fp)) or
die (sprintf("XML Error: %s at line %d",
xml_error_string(xml_get_error_code($parser)),
xml_get_current_line_number($parser)));
}
xml_parser_free($parser);
?>
function char($parser,$data)
{
echo $data;
}
function pi_handler($parser, $target, $data)
{
echo "Target: $target<br />";
echo "Data: $data<br />";
}
xml_set_character_data_handler($parser,"char");
xml_set_processing_instruction_handler($parser, "pi_handler");
$fp=fopen("test.xml","r");
while ($data=fread($fp,4096))
{
xml_parse($parser,$data,feof($fp)) or
die (sprintf("XML Error: %s at line %d",
xml_error_string(xml_get_error_code($parser)),
xml_get_current_line_number($parser)));
}
xml_parser_free($parser);
?>

相關文章
- PHP 常量
- PHP 超級全局變量
- PHP 多維數組
- PHP 錯誤處理
- PHP array_chunk() 函數
- PHP array_diff_assoc() 函數
- PHP array_fill() 函數
- PHP array_keys() 函數
- PHP array_multisort() 函數
- PHP array_rand() 函數
- PHP array_replace_recursive() 函數
- PHP array_udiff_uassoc() 函數
- PHP array_uintersect_assoc() 函數
- PHP asort() 函數
- PHP key() 函數
- PHP shuffle() 函數
- PHP uksort() 函數
- PHP 5 Date/Time 函數
- PHP 5 Directory 函數
- PHP 5 Filesystem 函數