CakeFest 2024: The Official CakePHP Conference

xml_parser_get_option

(PHP 4, PHP 5, PHP 7, PHP 8)

xml_parser_get_optionRestituisce le opzioni da un parser XML

Descrizione

xml_parser_get_option(resource $parser, int $option): mixed

Restituisce un'opzione da un parser XML.

Elenco dei parametri

parser
Un riferimento al parser XML dal quale ottenere un'opzione.
option
Quale opzione ottenere. Sono disponibili XML_OPTION_CASE_FOLDING e XML_OPTION_TARGET_ENCODING. Vedere xml_parser_set_option() per la loro descrizione.

Valori restituiti

Questa funzione restituisce false se parser non si riferisce ad un parser valido, o se option non è valido (viene anche generato un E_WARNING). Altrimenti viene restituito il valore dell'opzione.

add a note

User Contributed Notes 1 note

up
0
dnricky at hotmail dot com
6 years ago
<?php
$xmlparser
= xml_parser_create();

echo
"XML_OPTION_CASE_FOLDING:" . xml_parser_get_option($xmlparser, XML_OPTION_CASE_FOLDING) . "<br />"; //Specifies if case-folding is enabled. Enabled by default. Can be 1 (TRUE) or 0 (FALSE)

echo "XML_OPTION_TARGET_ENCODING:" . xml_parser_get_option($xmlparser, XML_OPTION_TARGET_ENCODING ) . "<br />"; //Specifies which target encoding to use in this XML parser. By default, it is set to the same as the xml_parser_create() function. Supported target encodings are ISO-8859-1, US-ASCII and UTF-8.

xml_parser_free($xmlparser);
?>
To Top