xml_parser_set_option
Set options in XML parser
xml_parser_set_option()
function is used to set options in the XML parser.
Set an option in the XML parser:
<?php $parser = xml_parser_create ( ) ; xml_parser_set_option ( $parser , XML_OPTION_CASE_FOLDING , 0 ) ; xml_parser_free ( $parser ) ; ?>
xml_parser_set_option ( parser , option , value )
parameter | describe |
---|---|
parser | Required. Specifies the XML parser to use. |
option |
Required. Specify the options to set. Possible values include:
|
value | Required. Specifies the new value for the option. |