Base de connaissances | Informatique-Programmation |
---|---|
PHP |
Comment fait-on pour convertir les balises HTML en texte affichage dans une page Web en PHP?
function HtmlToText($Text) {
if("" != $Text) {
return stripslashes(strtr($Text,array("'"=>"'","<"=>"<",">"=>">",chr(34)=>""",chr(0)=>"".chr(0)."")));
}
return $Text;
}
Dernière mise à jour : Dimanche, le 9 Octobre 2016