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

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

Jun 01, 2016 am 11:59 AM
HEX rgb

复制代码 代码如下:
 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 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

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the rgb color mode? What is the rgb color mode? Feb 13, 2020 pm 02:08 PM

What is the rgb color mode?

What is the difference between rgb and argb What is the difference between rgb and argb May 05, 2023 am 11:56 AM

What is the difference between rgb and argb

What does monitor rgb mean? What does monitor rgb mean? Feb 14, 2024 pm 09:00 PM

What does monitor rgb mean?

What is the RGB color mode? What is the RGB color mode? Feb 28, 2023 pm 04:01 PM

What is the RGB color mode?

Hexadecimal coding comparison table Hexadecimal coding comparison table Jun 21, 2023 pm 05:53 PM

Hexadecimal coding comparison table

rgb to hexadecimal rgb tutorial rgb to hexadecimal rgb tutorial Jun 21, 2023 pm 05:50 PM

rgb to hexadecimal rgb tutorial

What is the difference between cmyk and rgb What is the difference between cmyk and rgb Feb 03, 2023 pm 02:26 PM

What is the difference between cmyk and rgb

What does computer rgb mean? What does computer rgb mean? Jan 30, 2023 pm 02:37 PM

What does computer rgb mean?

See all articles