当前位置:Gxlcms > PHP教程 > 获得随机颜色的php代码

获得随机颜色的php代码

时间:2021-07-01 10:21:17 帮助过:33人阅读

  1. function randColor(){
  2. $letters = "1234567890ABCDEF";
  3. for($i=1;$i<6;$i++){
  4. $pos = rand(0,16);
  5. $str .= $string{$pos};
  6. }
  7. return "#".$str;
  8. }
  9. echo 'Random Color Text';
  10. ?>

php

人气教程排行