Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.
<?function hex2rgb($hex){ $rgb = array(); $rgb['r'] = hexdec(substr($hex, 0, 2)); $rgb['g'] = hexdec(substr($hex, 2, 2)); $rgb['b'] = hexdec(substr($hex, 4, 2)); return $rgb;}print_r(hex2rgb('ffffff'));?>
<?phpfunction hex2rgb($hex){ $rgb = array(); $rgb['r'] = hexdec(substr($hex, 0, 2)); $rgb['g'] = hexdec(substr($hex, 2, 2)); $rgb['b'] = hexdec(substr($hex, 4, 2)); return $rgb;}print_r(hex2rgb('ffffff'));$colors = hex2rgb('ffffff');echo "<br>".$colors['r'];echo "<br>".$colors['g'];echo "<br>".$colors['rb];?>