我需要把koi8-r编码的字符串转换成普通的utf8

最佳答案

你可以使用mb_convert_encoding

$output = mb_convert_encoding($input, 'UTF-8', 'KOI8-R');

09-12 02:14