gpt4 book ai didi

php - Setlocale() 不适用于大写重音字符

转载 作者:可可西里 更新时间:2023-11-01 14:04:42 25 4
gpt4 key购买 nike

我有一些带有(瑞士)法语字符的字符串,我想大写(PHP 5.3)。

echo strtoupper('société');

由于 strtoupper() 不适用于重字符,我做了一个 setlocale()(这个语言环境在我们的 Ubuntu dev 和 debian prod 服务器上可用),它不起作用:

setlocale(LC_CTYPE, 'fr_CH');
echo strtoupper('société');

预期结果:

SOCIÉTÉ

结果:

SOCIéTé

可用语言环境:

$ locale -a
...
fr_CH
fr_CH.iso88591
fr_CH.utf8
fr_FR
fr_FR.iso88591
fr_FR.iso885915@euro
fr_FR.utf8
fr_FR@euro
...

$ locale
LANG=
LANGUAGE=
LC_CTYPE="POSIX"
LC_NUMERIC="POSIX"
LC_TIME="POSIX"
LC_COLLATE="POSIX"
LC_MONETARY="POSIX"
LC_MESSAGES="POSIX"
LC_PAPER="POSIX"
LC_NAME="POSIX"
LC_ADDRESS="POSIX"
LC_TELEPHONE="POSIX"
LC_MEASUREMENT="POSIX"
LC_IDENTIFICATION="POSIX"
LC_ALL=

注意:mbstring 模块不可用。

最佳答案

使用 mb_strtoupper() 函数。 mb_strtoupper($str, 'UTF-8');

http://in3.php.net/manual/en/function.mb-strtoupper.php

信息

strtoupper 不是 unicode 感知的。你应该使用多字节版本的字符串函数

备选

<?php function mb_strtoupper_new($str, $e='utf-8') {
if (function_exists('mb_strtoupper')) {
return mb_strtoupper($str, $e='utf-8');
}
else {
foreach($str as &$char) {
$char = utf8_decode($char);
$char = strtr(char,
"abcdefghýijklmnopqrstuvwxyz".
"\x9C\x9A\xE0\xE1\xE2\xE3".
"\xE4\xE5\xE6\xE7\xE8\xE9".
"\xEA\xEB\xEC\xED\xEE\xEF".
"\xF0\xF1\xF2\xF3\xF4\xF5".
"\xF6\xF8\xF9\xFA\xFB\xFC".
"\xFE\xFF",
"ABCDEFGHÝIJKLMNOPQRSTUVWXYZ".
"\x8C\x8A\xC0\xC1\xC2\xC3\xC4".
"\xC5\xC6\xC7\xC8\xC9\xCA\xCB".
"\xCC\xCD\xCE\xCF\xD0\xD1\xD2".
"\xD3\xD4\xD5\xD6\xD8\xD9\xDA".
"\xDB\xDC\xDE\x9F");
$char = utf8_encode($char);
}
return $str;
}
}
echo mb_strtoupper_new('société');

来源:http://www.php.net/manual/es/function.ucfirst.php#63799

关于php - Setlocale() 不适用于大写重音字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10599922/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com