How can I supplement the code below to encode and decode text that has accents or symbols for HTML code?
In case I made the encoder more than not being very efficient I do not know how 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);
?>