- hexcolor2rgb, hexcolor to rgb
PHP
function hexcolor2rgb($hexcolor) {
$r = substr($hexcolor, 1, 2);
$g = substr($hexcolor, 3, 2);
$b = substr($hexcolor, 5, 2);
return array( hexdec($r), hexdec($g), hexdec($b) );
}
function hexcolor2rgb($hexcolor) {
$r = substr($hexcolor, 1, 2);
$g = substr($hexcolor, 3, 2);
$b = substr($hexcolor, 5, 2);
return array( hexdec($r), hexdec($g), hexdec($b) );
}