Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我得到了以下颜色-16777216,我想在 PHP 中将其转换为像这样的 alpha-hex 代码00FFBBCC。我也希望能够做相反的事情。我真的不知道从哪里开始,我的朋友 Google 没有给我答案。
-16777216
00FFBBCC
任何人都可以帮忙吗?
谢谢你。
使用 dechex() 怎么样?
echo dechex(-16777216);
它输出 ff000000
如果你想要大写字母,只需使用 strtoupper():
echo strtoupper(dechex(-16777216)); //FF000000
编辑:做相反,使用 hexdec() 而不是 dechex()