Processing XML with PHP - Configure the Parser
(Page 3 of 6 )
The behavior of the XML processor can be fine-tuned by passing the parser handle, the option and the desired value to xml_parser_set_option. Most often you will find yourself using this function to disable case folding (which oddly enough is enabled by default even though it goes against the XML specification).
<?php xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, false); ?> |
Next: Define the Callbacks >>
More Miscellaneous Articles
More By bluephoenix