note 12856 deleted from function.intval by felipe

[email protected]
Newsgroups php.notes
Message-ID <[email protected]>
Note Submitter: spectator at nanum dot net 

----

For hexadecimal value...
(Ex, RGB color value => each R,G,B integer value)
---------------------------------------

<?
$rgb = '#E7A3EF';
$r = intval(substr($rgb,1,2),16);
$g = intval(substr($rgb,3,2),16);
$b = intval(substr($rgb,5,2),16);
?>
RGB : <?= $rgb ?><br>
R : <?= $r ?><br>
G : <?= $g ?><br>
B : <?= $b ?><br>

---------------------------------------
=> RGB : #E7A3EF
R : 231
G : 163
B : 239
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.