String Funzioni
PHP Manual

get_html_translation_table

(PHP 4, PHP 5)

get_html_translation_table Restituisce la tabella di decodifica utilizzata da htmlspecialchars() e htmlentities()

Descrizione

array get_html_translation_table ([ int $table [, int $quote_style ]] )

La funzione get_html_translation_table() restituisce la tabella di decodifica utilizzata dalle funzioni htmlspecialchars() e htmlentities().

Esistono due nuove costanti (HTML_ENTITIES, HTML_SPECIALCHARS) che permettono di indicare quale tabella sid esidera. Inoltre nelle funzioni htmlspecialchars() e htmlentities(), opzionalmente, si può specificare il quote_style con cui si lavora. Il default è ENT_COMPAT. Vedere la descrizione di queste modalità in htmlspecialchars().

Example #1 Esempio della tabella di decodifica

<?php
$trans 
get_html_translation_table(HTML_ENTITIES);
$str "Hallo & <Frau> & Krämer";
$encoded strtr($str$trans);

echo 
$encoded;
?>

Il precedente esempio visualizzerà:

Hallo &amp; &lt;Frau&gt; &amp; Kr&auml;mer

Vedere anche: htmlspecialchars(), htmlentities(), strtr() e array_flip().


String Funzioni
PHP Manual