Skip to content

Instantly share code, notes, and snippets.

@joelmiguelvalente
Created October 23, 2019 19:32
Show Gist options
  • Save joelmiguelvalente/401225061c3016f45ad1f84d37584e37 to your computer and use it in GitHub Desktop.
Save joelmiguelvalente/401225061c3016f45ad1f84d37584e37 to your computer and use it in GitHub Desktop.
Este es para Smarty 2
<?php
function smarty_modifier_unescape($str = '') {
$arr = array(
"&lt;" => "<",
"&gt;" => ">",
"&quot;" => '"',
"&amp;" => "&",
"&#92;" => chr(92),
"&#39" => chr(39),
"&#039;" => chr(39)
);
return strtr($str,$arr);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment