PHP:将html-entity-encoded大写字符转换为小写

前端之家收集整理的这篇文章主要介绍了PHP:将html-entity-encoded大写字符转换为小写前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何将大写的html实体字符转换为小写?
$str = "É"; //É

$res = strtolower( $str );

echo $res;

http://codepad.viper-7.com/Zf3RTe

$str = "É"; //É

$res = mb_strtolower(html_entity_decode($str,ENT_COMPAT|ENT_HTML401,'UTF-8'),'UTF-8' );

echo $res;
原文链接:https://www.f2er.com/php/135909.html

猜你在找的PHP相关文章