function xmsb_randomColor()
{
    $strList = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'];
    $finalColor = '#';
    
    for($i = 0; $i < 6; $i ++)
    {
        $finalColor .= $strList[array_rand($strList)];
    }
    
    return $finalColor;
}

 

欢迎转载,转载时请注明来源。