PHP xml_parser_get_option() 函数
PHP xml_parser_get_option() 函数
完整的 PHP XML 参考手册定义和用法
xml_parser_get_option() 函数从 XML 解析器获取选项。
如果成功,该函数则返回选项值。如果失败,则返回 FALSE 和一个错误。
语法
xml_parser_get_option(parser,option,value)
参数 | 描述 |
---|---|
parser | 必需。规定要使用的 XML 解析器。 |
option | 必需。规定要获取的选项。可能的值:
|
实例
<?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 XML 参考手册
相关文章
- PHP 安装
- PHP 语法
- PHP 魔术常量
- PHP $_POST 变量
- PHP 文件上传
- PHP JSON
- PHP array() 函数
- PHP array_change_key_case() 函数
- PHP array_column() 函数
- PHP array_diff_uassoc() 函数
- PHP array_filter() 函数
- PHP array_key_first() 函数
- PHP array_keys() 函数
- PHP array_map() 函数
- PHP array_merge_recursive() 函数
- PHP array_values() 函数
- PHP extract() 函数
- PHP rsort() 函数
- PHP shuffle() 函数
- PHP sizeof() 函数