Convert hex color to RGB values in PHP

前端 未结 15 1829
轮回少年
轮回少年 2020-11-30 21:32

What would be a good way to convert hex color values like #ffffff into the single RGB values 255 255 255 using PHP?

15条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-30 22:10

    function RGB($hex = '')
    {
        $hex = str_replace('#', '', $hex);
        if(strlen($hex) > 3) $color = str_split($hex, 2);
        else $color = str_split($hex);
        return [hexdec($color[0]), hexdec($color[1]), hexdec($color[2])];
    }
    

提交回复
热议问题