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.
我有一个变量 ($color),它包含颜色名称、“橙色”、“红色”等的值。我不知道如何将这些值转换为十六进制,因为我需要另一个函数的十六进制值。
例如:
兑换:
black
至:
#000000
我还需要检查颜色是颜色名称还是十六进制值...
最简单的方法是看一下:
http://www.w3.org/TR/css3-color/#html4
将字符串名称和相应的十六进制值存储在数据库或数组中,并且在转换时只需从具有给定键名的数据库或数组中提取十六进制值。