What would be a good way to convert hex color values like #ffffff into the single RGB values 255 255 255 using PHP?
#ffffff
255 255 255
//if u want to convert rgb to hex $color='254,125,1'; $rgbarr=explode(",", $color); echo sprintf("#%02x%02x%02x", $rgbarr[0], $rgbarr[1], $rgbarr[2]);