Maison  >  Article  >  développement back-end  >  C# 中 UTF8Encoding.UTF8.GetBytes(key),,对应PHP中的哪个方法? 怎么写?

C# 中 UTF8Encoding.UTF8.GetBytes(key),,对应PHP中的哪个方法? 怎么写?

WBOY
WBOYoriginal
2016-06-20 12:46:032185parcourir

C# 中 UTF8Encoding.UTF8.GetBytes(key),,对应PHP中的哪个方法?
怎么写?


回复讨论(解决方案)

$s = '中文abc';$s = iconv('gbk', 'utf-8', $s); //不是 utf-8 时需转 utf-8print_r(unpack('C*', $s));
Array(    [1] => 228    [2] => 184    [3] => 173    [4] => 230    [5] => 150    [6] => 135    [7] => 97    [8] => 98    [9] => 99)
C#测试
            foreach (var c in UTF8Encoding.UTF8.GetBytes("中文abc"))            {                Console.WriteLine(c);            }

$s = '中文abc';$s = iconv('gbk', 'utf-8', $s); //不是 utf-8 时需转 utf-8print_r(unpack('C*', $s));
Array(    [1] => 228    [2] => 184    [3] => 173    [4] => 230    [5] => 150    [6] => 135    [7] => 97    [8] => 98    [9] => 99)
C#测试
            foreach (var c in UTF8Encoding.UTF8.GetBytes("中文abc"))            {                Console.WriteLine(c);            }

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn