"拼音"不同编码下的长度

2020-06-11  本文已影响0人  啦啦一路高歌
$e = strlen("拼音");
echo  strlen($s);    // 等于 6

$e = strlen("拼音");
$s = iconv('GBK', 'UTF-8',$s);   // 将UTF-8 转化为 GBK格式
echo  strlen($s);    // 等于 9

$e = strlen("拼音");
$s = iconv( 'UTF-8','GBK',$s);   // 将GBK 转化为 UTF-8格式
echo  strlen($s);    // 等于 4

[字符]乘以256

可能是 把 char 类型的字符 转换为 int 类型。

然后 int 类型的数字 * 256

UTF-8和GBK的区别

https://blog.csdn.net/qq_37859539/article/details/79857476
SQL语句书写复习

上一篇 下一篇

猜你喜欢

热点阅读