标签: 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 中存储的输出是什么?