Convert hex color to RGB values in PHP

Check out PHP’s hexdec() and dechex() functions: http://php.net/manual/en/function.hexdec.php

Example:

$value = hexdec('ff'); // $value = 255

Leave a Comment