标签:
1 //随机颜色 2 function randColor(){
3 $colors = array();
4 for($i = 0;$i<6;$i++){
5 $colors[] = dechex(rand(0,15));
6 }
7 return implode(‘‘,$colors);
8 }
调用方法:
echo ‘随机颜色:‘.‘.$randColor().‘;
标签:
原文地址:http://www.cnblogs.com/saivn/p/4807071.html