Home  >  Article  >  Backend Development  >  基于PHP的颜色生成器

基于PHP的颜色生成器

WBOY
WBOYOriginal
2016-06-23 13:42:10829browse



 function randomColor()
 { 
    $str = '#'; 
    for($i = 0 ; $i     { 
        $randNum = rand(0 , 15); 
        switch ($randNum) 
        { 
            case 10: $randNum = 'A'; break; 
            case 11: $randNum = 'B'; break; 
            case 12: $randNum = 'C'; break; 
            case 13: $randNum = 'D'; break; 
            case 14: $randNum = 'E'; break; 
            case 15: $randNum = 'F'; break; 
        } 


        $str .= $randNum; 
    } 
    return $str; 

     $color = randomColor();
     echo $color;
?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn