Guys may u please help me here
But if I parse myFunction('ά') for example it returns ά as is
PHP Code:
function myFunction($var)
{
$x = preg_replace('/&\#([0-9]+);/', html_entity_decode('&#$1;'), $var);
return $x;
}
Comment