PHP:表示数字的“多字节”字符串的数学计算

时间:2014-02-21 13:03:13

标签: php string character-encoding

在PHP中,我有一个包含数字的字符串变量。该字符串是多字节字符串并使用UTF-8编码。

当我回显变量($ str)时,它打印1392.但问题是此变量上的计算失败。考虑以下行的输出:

echo $str; // Prints 1392

echo $str + 0; // Prints 0 (it should print 1392)

echo $str + 1; // Prints 1 (it should print 1393)

echo bin2hex($str); // Prints: dbb1dbb3dbb9dbb2

0 个答案:

没有答案