Home >Backend Development >PHP Tutorial >PHP经典小函数_PHP

PHP经典小函数_PHP

WBOY
WBOYOriginal
2016-06-01 12:35:12896browse

相当于函数html_entity_decode的:

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

 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn