时间:2021-07-01 10:21:17 帮助过:2人阅读
echo dechex(-101);
如要得到9b,需要忽略前面的ff,因为是负数。
echo dechex(-101 & 0xff); //9b
echo dechex(-101);
如要得到9b,需要忽略前面的ff,因为是负数。
echo dechex(-101 & 0xff); //9b
非常感谢~~
echo dechex(-101 & 0xff); //9b 学习!