Skip to content

Instantly share code, notes, and snippets.

@kruxor
Created September 8, 2014 07:28
Show Gist options
  • Save kruxor/8ad1da44a7865208f0e5 to your computer and use it in GitHub Desktop.
Save kruxor/8ad1da44a7865208f0e5 to your computer and use it in GitHub Desktop.
return a random hex color value in php
function rand_color() {
return '#' . str_pad(dechex(mt_rand(0, 0xFFFFFF)), 6, '0', STR_PAD_LEFT);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment