Home  >  Article  >  Backend Development  >  Detailed explanation of the example development of a function that darkens a color in PHP

Detailed explanation of the example development of a function that darkens a color in PHP

黄舟
黄舟Original
2017-08-16 15:51:331092browse

In our daily development work, whether we are developing websites, shopping malls, or APPs, or whether it is front-end or back-end, color is an indispensable part. Then the color in the web page reflects the beauty of the web page, user experience and aesthetics. One of the important elements, so today we will introduce you to the detailed development example of a function that darkens a color in PHP!

First download the php function library we need to use for this course to darken a color: http://www.php.cn/xiazai/leiku/690

Download After completion, find the php class file we need, unzip it to our local directory, and create a new php file!

After completion, we need to call this class in the new php file and instantiate the class:

<?php
include_once "codeyanse.php"; //引入类文件

//实现颜色加深
for ($x=1; $x < 20; $x++){
  // Start color:
  $c = ColorDarken(&#39;#CC3333&#39;, ($x * 3));
  print "<p style=&#39;background-color: $c; color: $c; font-size: 50%; padding: 0px;&#39;>.</p>\n";
}

?>

Run the file and the result will be as shown below:

Detailed explanation of the example development of a function that darkens a color in PHP

The above is the detailed content of Detailed explanation of the example development of a function that darkens a color in PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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