-1

How to convert colors "blue" or "green" or other colors to rgb or hex in PHP?

hexdec or dechex no help me.

Ahmed Siouani
  • 13,701
  • 12
  • 61
  • 72
rafonets
  • 46
  • 4

1 Answers1

0

Hm... I think you should create array of colors

$colors = array('red' => '2550000', 'blue' => '000255000'); 

hexdec decode your numeric in another system, not names of colors.

KoIIIeY
  • 533
  • 1
  • 7
  • 26