gpt4 book ai didi

php - 如何在 PHP 中对 UTF-8 执行 strtr?

转载 作者:可可西里 更新时间:2023-11-01 12:47:22 26 4
gpt4 key购买 nike

我正在为 PHP 寻找 UTF-8 兼容的 strtr。

最佳答案

function strtr_utf8($str, $from, $to) {
$keys = array();
$values = array();
preg_match_all('/./u', $from, $keys);
preg_match_all('/./u', $to, $values);
$mapping = array_combine($keys[0], $values[0]);
return strtr($str, $mapping);
}

关于php - 如何在 PHP 中对 UTF-8 执行 strtr?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1454401/

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