strip_tags online htmlspecialchars_decode htmlentities html_entity_decode html_entities php htmlspecialchars

online - php htmlspecialchars_decode



reversa htmlspecialchars (4)

Necesitas htmlspecialchars_decode() . Ver manual .

$html = htmlspecialchars_decode( $html, ENT_NOQUOTES );

Esto puede parecer un problema simple, pero no pude encontrarlo en los archivos.

¿Cómo se revierten los efectos de htmlspecialchars?

Probé algo como esto:

$trans_tbl = get_html_translation_table (HTML_ENTITIES); $trans_tbl = array_flip ($trans_tbl); $html = strtr ($html, $trans_tbl);

pero no funcionó. ¿Hay una manera simple de hacer esto?


Por lo que entendí, necesitas htmlspecialchars_decode - Docu


Utilice htmlspecialchars_decode()

<?php $str = "<p>this -&gt; &quot;</p>/n"; echo htmlspecialchars_decode($str); // note that here the quotes aren''t converted echo htmlspecialchars_decode($str, ENT_NOQUOTES); ?>

Referencia - manual . manual


ejemplo:

echo htmlspecialchars_decode(htmlspecialchars(''your "strange" text with characters like !"/$%?&*''))

hará eco: su texto "extraño" con caracteres como! "/ $%? & *

Este es un ejemplo de codificar / decodificar. funciona.