PHP - Funzione Ottieni tabella di traduzione HTML
Sintassi
array get_html_translation_table ([ int $table = HTML_SPECIALCHARS [,
int $flags = ENT_COMPAT | ENT_HTML401 [, string $encoding = "UTF-8" ]]] )
Definizione e utilizzo
Restituisce la tabella di traduzione usata dalle funzioni htmlentities () e htmlspecialchars ().
Valori restituiti
Restituisce la tabella di traduzione come un array con i caratteri originali come chiavi e le entità come valori.
Parametri
Suor n | Parametri e descrizione |
---|---|
1 | table Contiene le informazioni su quale tabella restituire HTML_ENTITIES o HTML_SPECIALCHARS |
2 | flags Contiene le informazioni sui flag |
Esempio
Prova il seguente esempio
<?php
print_r (get_html_translation_table(HTML_SPECIALCHARS));
?>
Questo produrrà il seguente risultato:
Array
(
["] => "
[&] => &
[<] => <
[>] => >
)