If you want to convert hex to rgb you can use sscanf:
$r $g $b”;
?>
Output:
#ff9900 -> 255 153 0
Check out PHP’s hexdec() and dechex() functions:
http://php.net/manual/en/function.hexdec.php
Example:
$value = hexdec(‘ff’); // $value = 255
by James Palmer
If you want to convert hex to rgb you can use sscanf:
$r $g $b”;
?>
Output:
#ff9900 -> 255 153 0
Check out PHP’s hexdec() and dechex() functions:
http://php.net/manual/en/function.hexdec.php
Example:
$value = hexdec(‘ff’); // $value = 255