$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语句书写复习
网友评论