Easy Tutorial
❮ Php Preg_Match Func Filter Input Array ❯

PHP xml_parser_set_option() Function



Definition and Usage

The xml_parser_set_option() function sets options for an XML parser.

The function returns TRUE on success and FALSE on failure.

Syntax

Parameter Description
parser Required. Specifies the XML parser to use.
option Required. Specifies the option to set. Possible values: XML_OPTION_CASE_FOLDING - Specifies whether case-folding is allowed. Default is allowed. Can be 1 (TRUE) or 0 (FALSE).<br> XML_OPTION_SKIP_TAGSTART - Specifies the number of characters to skip at the start of the tag name.<br> XML_OPTION_SKIP_WHITE - Specifies whether to skip values consisting of whitespace characters. Can be 1 (TRUE) or 0 (FALSE).<br> XML_OPTION_TARGET_ENCODING - Specifies which target encoding to use in the XML parser. By default, it is the same as the setting in the xml_parser_create() function, and it supports the target encodings: ISO-8859-1, US-ASCII, and UTF-8.
value Required. Specifies the new value for the option.

Example


❮ Php Preg_Match Func Filter Input Array ❯