PHP convert color to its inverse color method, PHP convert color for its _php tutorial

Source: Internet
Author: User

PHP converts color to its inverse color method, PHP converts the color to its


The example in this article describes how PHP converts color to its inverse color. Share to everyone for your reference. The specific analysis is as follows:

This PHP code can turn a color into the opposite color code, such as: White Turns black, blue turns yellow

function Color_inverse ($color) {  $color = str_replace (' # ', ' ', $color);  if (strlen ($color)! = 6) {return ' 000000 ';}  $rgb = ";  for ($x =0; $x <3; $x + +) {    $c = 255-hexdec (substr ($color, (* * $x), 2));    $c = ($c < 0)? 0:dechex ($c);    $rgb. = (strlen ($c) < 2)? ' 0 '. $c: $c;  }  Return ' # '. $rgb;} Use example://Black Whiteprint color_inverse (' #000000 '); --Returns #ffffff//Blue Yellowprint color_inverse (' #0000FF ');/--#FFFF00

I hope this article is helpful to everyone's PHP programming.

http://www.bkjia.com/PHPjc/990539.html www.bkjia.com true http://www.bkjia.com/PHPjc/990539.html techarticle PHP conversion color for its inverse color method, PHP conversion color for its example in this article tells the PHP conversion color for its inverse color method. Share to everyone for your reference. The specific analysis is as follows: This paragraph ...

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.