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

PHP code: Convert hexadecimal color to RGB color value_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-21 14:58:29
Original
965 people have browsed it

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 of this Website
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template