Skip to content

Instantly share code, notes, and snippets.

@xdstack
Created September 13, 2012 12:57
Show Gist options
  • Save xdstack/3714131 to your computer and use it in GitHub Desktop.
Save xdstack/3714131 to your computer and use it in GitHub Desktop.
PHP 将颜色的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 );
}
@xdstack
Copy link
Author

xdstack commented Sep 13, 2012

http://css-tricks.com/snippets/php/convert-hex-to-rgb/

Give function hex code (e.g. #eeeeee), returns array of RGB values.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment