Encoding.GetChars(" iso-8859-9")C#到PHP

时间:2017-02-04 12:28:40

标签: c# php character-encoding

我在C#中有以下代码,我需要将其转换为PHP:

turkishEncoding = Encoding.GetEncoding("iso-8859-9");
var bytes = Enumerable.Range(0, 255).Select(a => (byte)a).ToArray();
inAlphabet = turkishEncoding.GetChars(bytes);

有没有人知道PHP中的这种情况是否相同,或者 inAlphabet 中存储的输出是什么?

0 个答案:

没有答案