Skip to content

Instantly share code, notes, and snippets.

@IsaacAndres
Created August 24, 2020 20:00
Show Gist options
  • Save IsaacAndres/a0f6af7f2ec2d12a4229fbac809b6cbe to your computer and use it in GitHub Desktop.
Save IsaacAndres/a0f6af7f2ec2d12a4229fbac809b6cbe to your computer and use it in GitHub Desktop.
Convierte las tildes de un texto a sus entidades HTML.
<?php
function tildesHtml($cadena) {
return str_replace(array("á","é","í","ó","ú","ñ","Á","É","Í","Ó","Ú","Ñ"), array("&aacute;","&eacute;","&iacute;","&oacute;","&uacute;","&ntilde;","&Aacute;","&Eacute;","&Iacute;","&Oacute;","&Uacute;","&Ntilde;"), $cadena);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment