1
How can I complement the code below to encode and decode a text that has accents or symbols for HTML code?
In case I made the encoder besides not being very efficient I am not knowing to make the decoder to return the original text.
<?php
function htmlconversor ($texto) {
$ htmlcodificado = htmlentities($texto, ENT_QUOTES,'UTF-8');
return $htmlcodificado;
}
echo $valor = htmlconversor("Ação para conversão de áãé etc para código html");
// Pega o resultado e decodifica de html code para normal
echo "Converte o texto para código html ".htmlspecialchars_decode($valor);
?>