Home  >  Article  >  Backend Development  >  php颜色转换函数hex-rgb(将十六进制格式转成十进制格式)_PHP

php颜色转换函数hex-rgb(将十六进制格式转成十进制格式)_PHP

WBOY
WBOYOriginal
2016-06-01 11:59:091003browse
复制代码 代码如下:
 function hex2rgb($colour) {  
    if ($colour [0] == '#') {  
        $colour = substr ( $colour, 1 );  
    }  
    if (strlen ( $colour ) == 6) {  
        list ( $r, $g, $b ) = array ($colour [0] . $colour [1], $colour [2] . $colour [3], $colour [4] . $colour [5] );  
    } elseif (strlen ( $colour ) == 3) {  
        list ( $r, $g, $b ) = array ($colour [0] . $colour [0], $colour [1] . $colour [1], $colour [2] . $colour [2] );  
    } else {  
        return false;  
    }  
    $r = hexdec ( $r );  
    $g = hexdec ( $g );  
    $b = hexdec ( $b );  
    return array ('red' => $r, 'green' => $g, 'blue' => $b );  
}  
$b = hex2rgb ( "#ff0" );  
print_r ( $b );  
?> 
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