《PHP教程:php生成随机颜色方法汇总》要点:
本文介绍了PHP教程:php生成随机颜色方法汇总,希望对您有用。如果有疑问,可以联系我们。
办法一:
随机生成颜色值(例如 FF00FF).PHP应用
color.phpPHP应用
代码如下:
function random_color(){
mt_srand((double)microtime()*1000000);
$c = '';
while(strlen($c)<6){
$c .= sprintf("%02X", mt_rand(0, 255));
}
return $c;
}
办法二:PHP应用
代码如下:
function randrgb()
{
$str='0123456789ABCDEF';
$estr='#';
$len=strlen($str);
for($i=1;$i<=6;$i++)
{
$num=rand(0,$len-1);
$estr=$estr.$str[$num];
}
return $estr;
}
办法三:PHP应用
代码如下:
function randColor(){
$colors = array();
for($i = 0;$i<6;$i++){
$colors[] = dechex(rand(0,15));
}
return implode('',$colors);
}
使用办法如下:
<?php echo '<span style="color: #'.randColor().'">随机颜色:#'.randColor().'</span>';?>PHP应用
《PHP教程:php生成随机颜色方法汇总》是否对您有启发,欢迎查看更多与《PHP教程:php生成随机颜色方法汇总》相关教程,学精学透。维易PHP学院为您提供精彩教程。
转载请注明本页网址:
http://www.vephp.com/jiaocheng/13486.html