当前位置 : 主页 > 网络编程 > PHP >

php16进制颜色转换为RGB色值hex2rgb.txt

来源:互联网 收集:自由互联 发布时间:2021-06-28
16进制颜色转换为RGB色值hex2rgb.txt /** * 16进制颜色转换为RGB色值 * @method hex2rgb */function hex2rgb($hexColor) { $color = str_replace('#', '', $hexColor); if (strlen($color) 3) { $rgb = array( '0' = hexdec(substr($color,
16进制颜色转换为RGB色值hex2rgb.txt
/**
 * 16进制颜色转换为RGB色值
 * @method hex2rgb
 */
function hex2rgb($hexColor) {

    $color = str_replace('#', '', $hexColor);
    if (strlen($color) > 3) {
        $rgb = array(
            '0' => hexdec(substr($color, 0, 2)),
            '1' => hexdec(substr($color, 2, 2)),
            '2' => 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(
            '0' => hexdec($r),
            '1' => hexdec($g),
            '2' => hexdec($b)
        );
    }

    return $rgb;
}
//该片段来自于http://www.codesnippet.cn/detail/2609201513736.html
网友评论