スニペット
$color = preg_replace("/^#/", '', "#000000");
$out = array();
for ($i = 0; $i < 6; $i+=2) {
$hex = substr($color, $i, 2);
$out[] = hexdec($hex);
}
出力すると$out[0],$out[1],$out[2]それぞれにRGB数値が入力される。
$color = preg_replace("/^#/", '', "#000000");
$out = array();
for ($i = 0; $i < 6; $i+=2) {
$hex = substr($color, $i, 2);
$out[] = hexdec($hex);
}
出力すると$out[0],$out[1],$out[2]それぞれにRGB数値が入力される。