Skip to content

Instantly share code, notes, and snippets.

@yokesharun
Created March 2, 2016 08:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yokesharun/0abae7fefbccc94df76e to your computer and use it in GitHub Desktop.
Save yokesharun/0abae7fefbccc94df76e to your computer and use it in GitHub Desktop.
Generate Random Color in PHP
function random_color_part() {
return str_pad( dechex( mt_rand( 0, 255 ) ), 2, '0', STR_PAD_LEFT);
}
function random_color() {
return random_color_part() . random_color_part() . random_color_part();
}
echo random_color();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment