<?php $hex = 'ffffff'; $red = hexdec( substr( $hex, 0, 2 ) ); $green = hexdec( substr( $hex, 2, 2 ) ); $blue = hexdec( substr( $hex, 4, 2 ) ); var_dump(compact('red', 'green', 'blue'));
You have javascript disabled. You will not be able to edit any code.