function generateColor(){
mt_srand((double)microtime()*1000000);
$res = '';
while(strlen($c)<6){
$res .= sprintf("%02X", mt_rand(0, 255));
}
return $res;
}
Contoh penggunaan :
$color = '#'.generateColor();
ini akan menghasilkan 6 digit hex color code.
Semoga bermanfaat
Prastowo aGung Widodo
Komentar
Posting Komentar