Home  >  Article  >  Backend Development  >  PHP code: Convert hexadecimal color to RGB color value_PHP tutorial

PHP code: Convert hexadecimal color to RGB color value_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 14:58:29907browse

php code: Convert hexadecimal color to RGB color value, source of this article: Mango Station.

Copy to ClipboardLiehuo.Net CodesQuoted content: [www.bkjia.com]
/**
* Convert hexadecimal color to RGB color value
* @method hex2rgb
*/
function hex2rgb($hexColor) {

$color = str_replace('#', '', $hexColor);
if (strlen($color) > 3) {
$rgb = array(
'r' => hexdec(substr($color, 0, 2)),
'g ' => hexdec(substr($color, 2, 2)),
'b' => hexdec(substr($color, 4, 2))
);
} else {
$color = str_replace('#', '', $hexColor);
$r = substr($color, 0, 1) . substr($color, 0, 1);
$g = substr($color, 1, 1) . substr($color, 1, 1);
$b = substr($color, 2, 1) . substr($color, 2, 1);
$ rgb = array(
'r' => hexdec($r),
'g' => hexdec($g),
'b' => hexdec($b)
);
}

return $rgb;
}

?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/363860.htmlTechArticlephp code: Convert hexadecimal color to RGB color value, source of this article: Mango Station. Copy to Clipboard Quoted content: [www.veryhuo.com] ?php /** * Convert hexadecimal color to RGB color value...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn