Convert RGB to Hex Color using PHP September 6, 2020 PHP 0 Comments 799 Views sprintf function <?php $r = 128; $g = 96; $b = 194; $hexColor = sprintf('#%02x%02x%02x', $r, $g, $b); echo $hexColor;
Leave a Comment
Cancel reply