xml_parser_get_option
Get options from XML parser
xml_parser_get_option()
function is used to obtain options from the XML parser.
Get options from the XML parser:
<?php $parser = xml_parser_create ( ) ; echo "XML_OPTION_CASE_FOLDING: " . xml_parser_get_option ( $parser , XML_OPTION_CASE_FOLDING ) . < br > ; echo "XML_OPTION_TARGET_ENCODING: " . xml_parser_get_option ( $parser , XML_OPTION_TARGET_ENCODING ) ; xml_parser_free ( $parser ) ; ?>
Run the instance
xml_parser_get_option ( parser , option )
parameter | describe |
---|---|
parser | Required. Specifies the XML parser to use |
option |
Required. Specify the option to obtain. Possible values:
|