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

php生成随机颜色

程序员文章站 2022-05-26 14:38:28
...

一段php生成随机颜色的代码,如:FF00FF

  1. function random_color(){
  2. mt_srand((double)microtime()*1000000);
  3. $c = '';
  4. while(strlen($c) $c .= sprintf("%02X", mt_rand(0, 255));
  5. }
  6. return $c;
  7. }
  8. //使用范例:
  9. random_color() => returns something like: '7C42BA', '5F3964'
复制代码

php
相关标签: php生成随机颜色