PHP Code: 16 binary color conversion to RGB color value _php Tutorial

Source: Internet
Author: User
PHP Code: 16 binary color converted to RGB color value, this article source: Mango station.

Copy to ClipboardWhat to refer to: [www.bkjia.com]
/**
* 16 binary color converted to RGB color value
* @method Hex2rgb
*/
function Hex2rgb ($hexColor) {

$color = Str_replace (' # ', ' ', $hexColor);
if (strlen ($color) > 3) {
$rgb = Array (
' R ' = Hexdec (substr ($color, 0, 2)),
' G ' = Hexdec (substr ($color, 2, 2)),
' B ' = 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 (
' R ' = Hexdec ($r),
' G ' = Hexdec ($g),
' B ' = Hexdec ($b)
);
}

return $RGB;
}

?>

http://www.bkjia.com/PHPjc/363860.html www.bkjia.com true http://www.bkjia.com/PHPjc/363860.html techarticle PHP Code: 16 binary color converted to RGB color value, this article source: Mango station. Copy to Clipboard references: [www.veryhuo.com]? PHP/** * 16 binary color converted to RGB color value ...

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.