我正在尝试将标准 ASCII 字母转换为全角日文字母。例如:
Game
变成Game
我搜索了一个答案,发现这个问题有一个很好的答案,我在下面引用了这个答案:
$str = "Game some other text by ヴィックサ";
$str = preg_replace_callback(
"/[\x{ff01}-\x{ff5e}]/u",
function($c) {
// convert UTF-8 sequence to ordinal value
$code = ((ord($c[0][0])&0xf)<<12)|((ord($c[0][1])&0x3f)<<6)|(ord($c[0][2])&0x3f);
return chr($code-0xffe0);
},
$str);
但我希望它朝相反的方向发展。我尝试在 return 语句中将 (-) 符号更改为 (+),但没有太大成功。