PHP implements the method of converting the color hex value to rgb, hexrgb
This article describes how PHP converts the color hex value to rgb. We will share this with you for your reference. The details are as follows:
Function hex2rgb ($ color) {if ($ color [0] = '#') {$ color = substr ($ color, 1);} if (strlen ($ color) = 6) {list ($ r, $ g, $ B) = array ($ color [0]. $ color [1], $ color [2]. $ color [3], $ color [4]. $ color [5]);} elseif (strlen ($ color) = 3) {list ($ r, $ g, $ B) = array ($ color [0]. $ color [0], $ color [1]. $ color [1], $ color [2]. $ color [2]);} else {return false;} $ r = hexdec ($ r); $ g = hexdec ($ g ); $ B = hexdec ($ B); return array ('red' => $ r, 'green' => $ g, 'blue' => $ B );} // test var_dump (hex2rgb ("# eeeeee "));
The running result is as follows:
Array (3) {["red"] => int (238) ["green"] => int (238) ["blue"] => int (238 )}
For information on color value conversion and acquisition, refer to the online tool on this site:
RGB color encoding Generator
Online webpage color matching tool
RGB color query table _ color code table _ English name of colors