Heim  >  Artikel  >  Backend-Entwicklung  >  php代码:16 进制颜色转换为 RGB 色值_PHP教程

php代码:16 进制颜色转换为 RGB 色值_PHP教程

WBOY
WBOYOriginal
2016-07-21 14:58:29907Durchsuche

php代码:16 进制颜色转换为 RGB 色值,本文来源:芒果小站。

Copy to ClipboardLiehuo.Net Codes引用的内容:[www.bkjia.com]
/**
* 16进制颜色转换为RGB色值
* @method hex2rgb
*/
function hex2rgb($hexColor) {

$color = str_replace('#', '', $hexColor);
if (strlen($color) > 3) {
$rgb = array(
'r' => hexdec(substr($color, 0, 2)),
'g' => hexdec(substr($color, 2, 2)),
'b' => hexdec(substr($color, 4, 2))
);
} else {
$color = str_replace('#', '', $hexColor);
$r = substr($color, 0, 1) . substr($color, 0, 1);
$g = substr($color, 1, 1) . substr($color, 1, 1);
$b = substr($color, 2, 1) . substr($color, 2, 1);
$rgb = array(
'r' => hexdec($r),
'g' => hexdec($g),
'b' => hexdec($b)
);
}

return $rgb;
}

?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/363860.htmlTechArticlephp代码:16 进制颜色转换为 RGB 色值,本文来源:芒果小站。 Copy to Clipboard 引用的内容: [www.veryhuo.com] ?php /** * 16进制颜色转换为RGB色值...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn