php代码:16 进制颜色转换为 RGB 色值

前端之家收集整理的这篇文章主要介绍了php代码:16 进制颜色转换为 RGB 色值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

PHP代码:16 进制颜色转换为 RGB 色值,本文来源:芒果小站。

Copy to Clipboard

Liehuo.Net Codes

引用的内容[www.veryhuo.com]
<?PHP

/**
* 16进制颜色转换为RGB色值
* @method hex2rgb
*/
function hex2rgb($hexColor) {

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

return $rgb;
}

?>

猜你在找的PHP相关文章