Convert hex color to RGB values in PHP

前端 未结 15 1853
轮回少年
轮回少年 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:27

    //if u want to convert rgb to hex
    $color='254,125,1';
    $rgbarr=explode(",", $color);
    echo sprintf("#%02x%02x%02x", $rgbarr[0], $rgbarr[1], $rgbarr[2]);
    

提交回复
热议问题