欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

获得随机颜色的php代码

程序员文章站 2022-06-13 11:14:51
...
  1. function randColor(){
  2. $letters = "1234567890ABCDEF";
  3. for($i=1;$i $pos = rand(0,16);
  4. $str .= $string{$pos};
  5. }
  6. return "#".$str;
  7. }
  8. echo 'Random Color Text';
  9. ?>
复制代码

php