Skip to content

Instantly share code, notes, and snippets.

@INDIAN2020
Forked from yanknudtskov/rgb-2-hex.php
Created June 18, 2018 06:59
Show Gist options
  • Save INDIAN2020/8da45ca00e98617d4966e008b4447689 to your computer and use it in GitHub Desktop.
Save INDIAN2020/8da45ca00e98617d4966e008b4447689 to your computer and use it in GitHub Desktop.
Convert rgb colors to hex
<?php
function rgb2hex($rgb) {
$hex = "#";
$hex .= str_pad(dechex($rgb[0]), 2, "0", STR_PAD_LEFT);
$hex .= str_pad(dechex($rgb[1]), 2, "0", STR_PAD_LEFT);
$hex .= str_pad(dechex($rgb[2]), 2, "0", STR_PAD_LEFT);
return $hex; // returns the hex value including the number sign (#)
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment