方法一:完全随机颜色
<?php
function randColor(){
$colors = array();
for($i = 0;$i<6;$i++){
$colors[] = dechex(rand(0,15));
}
return implode('',$colors);
}
?>
方法二:随机挑选数组里的颜色
<?php
function randColor(){
$colors=array('5CB85C','428BCA','FF6600','D9534F','B37333','00ABA9');
$show_color = array_rand($colors, 1);
return $colors[$show_color];
}
?>