PHP xml_parser_get_option() 函數(shù)
PHP xml_parser_get_option() 函數(shù)

定義和用法
xml_parser_get_option() 函數(shù)從 XML 解析器獲取選項。
如果成功,該函數(shù)則返回選項值。如果失敗,則返回 FALSE 和一個錯誤。
語法
xml_parser_get_option(parser,option,value)
參數(shù) | 描述 |
---|---|
parser | 必需。規(guī)定要使用的 XML 解析器。 |
option | 必需。規(guī)定要獲取的選項??赡艿闹担?ul>
|
實例
<?php
$xmlparser = xml_parser_create();
echo xml_parser_get_option($xmlparser, XML_OPTION_CASE_FOLDING);
xml_parser_free($xmlparser);
?>
$xmlparser = xml_parser_create();
echo xml_parser_get_option($xmlparser, XML_OPTION_CASE_FOLDING);
xml_parser_free($xmlparser);
?>

相關文章
- PHP 安裝
- PHP 語法
- PHP 魔術(shù)常量
- PHP $_POST 變量
- PHP 文件上傳
- PHP JSON
- PHP array() 函數(shù)
- PHP array_change_key_case() 函數(shù)
- PHP array_column() 函數(shù)
- PHP array_diff_uassoc() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_values() 函數(shù)
- PHP extract() 函數(shù)
- PHP rsort() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP sizeof() 函數(shù)