A simple way to generate random colors in php, php generation_PHP tutorial

WBOY
Release: 2016-07-12 08:53:04
Original
836 people have browsed it

How to simply generate random colors in php, php generate

The example in this article describes how to simply generate random colors in php. Share it with everyone for your reference, the details are as follows:

<&#63;php
  //第一种方法:
   $rand = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f');
  $color = '#'.$rand[rand(0,15)].$rand[rand(0,15)].$rand[rand(0,15)].$rand[rand(0,15)].$rand[rand(0,15)].$rand[rand(0,15)];
  echo $color."<br/>"; 
  //第二种方法:
   printf( "#%06X\n", mt_rand( 0, 0xFFFFFF ));
&#63;>

Copy after login

The running results are as follows:

#4338cd
#7EF5B8 

Copy after login

For color value conversion and acquisition, you can also refer to the online tools of this site:

RGB color coding generator

Online web color matching tool

RGB Color Query Comparison Table_Color Code Table_Complete English Names of Colors

Readers who are interested in more PHP-related content can check out the special topics of this site: "Complete PHP Array Operation Skills", "Summary of PHP Mathematical Operation Skills", "Summary of PHP Graphics and Image Operation Skills", "php Summary of skills for operating office documents (including word, excel, access, ppt)", "Summary of php date and time usage", "Introduction to php object-oriented programming tutorial", "Summary of php string (string) usage", "php mysql "Introduction to Database Operation Tutorial" and "Summary of Common PHP Database Operation Skills"

I hope this article will be helpful to everyone in PHP programming.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1125241.htmlTechArticleHow to simply generate random colors in php, PHP generates this article's example to describe how to simply generate random colors in php. Share it with everyone for your reference, the details are as follows: php //The first method:...
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!