当前位置:Gxlcms > PHP教程 > PHP经典小函数_PHP

PHP经典小函数_PHP

时间:2021-07-01 10:21:17 帮助过:5人阅读

相当于函数html_entity_decode的:

function unhtmlentities($string)
{
$array = get_html_translation_table(HTML_ENTITIES
);
$array = array_flip($array
);
return strstr
($string, $array
);
}

人气教程排行