当前位置:网站首页>php中获取汉字拼音大写首字母
php中获取汉字拼音大写首字母
2022-07-02 06:23:00 【夜空の雪風】
前言
在做项目开发的工程中遇到了要把一串中文字符串返回大写首字母的功能,在借鉴网上其他开发者的方法以后整理了一下最好用的一种方法。
问题描述
需要把【下游堆石区】转换成【XYDSQ】。
方法示例
if (!function_exists('getfirstchar')) {
/** * 获取汉字拼音大写首字母 * @param [type] $str * @return void */
function getfirstchar($str)
{
$fchar = ord(substr((string) $str, 0, 1));
if (($fchar >= ord("a") and $fchar <= ord("z")) or ($fchar >= ord("A") and $fchar <= ord("Z"))) {
return strtoupper(chr($fchar));
}
$s = iconv("UTF-8", "GBK", (string) $str);
$asc = ord($s{
0}) * 256 + ord($s{
1}) - 65536;
if ($asc >= -20319 and $asc <= -20284) {
return "A";
}
if ($asc >= -20283 and $asc <= -19776) {
return "B";
}
if ($asc >= -19775 and $asc <= -19219) {
return "C";
}
if ($asc >= -19218 and $asc <= -18711) {
return "D";
}
if ($asc >= -18710 and $asc <= -18527) {
return "E";
}
if ($asc >= -18526 and $asc <= -18240) {
return "F";
}
if ($asc >= -18239 and $asc <= -17923) {
return "G";
}
if ($asc >= -17922 and $asc <= -17418) {
return "H";
}
if ($asc >= -17417 and $asc <= -16475) {
return "J";
}
if ($asc >= -16474 and $asc <= -16213) {
return "K";
}
if ($asc >= -16212 and $asc <= -15641) {
return "L";
}
if ($asc >= -15640 and $asc <= -15166) {
return "M";
}
if ($asc >= -15165 and $asc <= -14923) {
return "N";
}
if ($asc >= -14922 and $asc <= -14915) {
return "O";
}
if ($asc >= -14914 and $asc <= -14631) {
return "P";
}
if ($asc >= -14630 and $asc <= -14150) {
return "Q";
}
if ($asc >= -14149 and $asc <= -14091) {
return "R";
}
if ($asc >= -14090 and $asc <= -13319) {
return "S";
}
if ($asc >= -13318 and $asc <= -12839) {
return "T";
}
if ($asc >= -12838 and $asc <= -12557) {
return "W";
}
if ($asc >= -12556 and $asc <= -11848) {
return "X";
}
if ($asc >= -11847 and $asc <= -11056) {
return "Y";
}
if ($asc >= -11055 and $asc <= -10247) {
return "Z";
}
return null;
}
}
if (!function_exists('get_letter')) {
/** * 获取汉字拼音的大写首字母 * @param [type] $string * @return void */
function get_letter($string)
{
$charlist = preg_split('/(?<!^)(?!$)/u', (string) $string);
return implode(array_map("getfirstchar", $charlist));
}
}
使用方法
//【下游堆石区】转换成【XYDSQ】
$zone_name_pinyin = get_letter('下游堆石区');
边栏推荐
- 工具种草福利帖
- Sqli-labs customs clearance (less18-less20)
- Nodejs - Express middleware modification header: typeerror [err_invalid_char]: invalid character in header content
- Overload global and member new/delete
- 部署api_automation_test过程中遇到的问题
- ModuleNotFoundError: No module named ‘jieba. analyse‘; ‘ jieba‘ is not a package
- Explanation and application of annotation and reflection
- 20210306 reprint how to make TextEdit have background pictures
- Eggjs -typeorm treeenity practice
- Fe - weex uses a simple encapsulated data loading plug-in as the global loading method
猜你喜欢
由於不正常斷電導致的unexpected inconsistency;RUN fsck MANUALLY問題已解决
搭建frp进行内网穿透
In depth study of JVM bottom layer (IV): class file structure
UEditor . Net version arbitrary file upload vulnerability recurrence
Sqli-labs customs clearance (less15-less17)
Pytest (1) case collection rules
Wechat applet Foundation
In depth study of JVM bottom layer (II): hotspot virtual machine object
Présence d'une panne de courant anormale; Problème de gestion de la fsck d'exécution résolu
CVE-2015-1635(MS15-034 )遠程代碼執行漏洞複現
随机推荐
Solution to the black screen of win computer screenshot
ZZQ的博客目录--更新于20210601
Apt command reports certificate error certificate verification failed: the certificate is not trusted
Redis -- cache breakdown, penetration, avalanche
js中map和forEach的用法
js删除字符串的最后一位
Virtualenv and pipenv installation
Latex在VSCODE中编译中文,使用中文路径问题解决
Use of interrupt()
How to debug wechat built-in browser applications (enterprise number, official account, subscription number)
Sqli-labs customs clearance (less6-less14)
工具种草福利帖
Pytest (1) case collection rules
[leetcode question brushing day 35] 1060 Missing element in ordered array, 1901 Find the peak element, 1380 Lucky number in matrix
SQLI-LABS通关(less15-less17)
2020-9-23 use of QT timer qtimer class.
Self study table Au
Implement strstr() II
The table component specifies the concatenation parallel method
解决微信小程序swiper组件bindchange事件抖动问题