note 12156 deleted from function.dechex by felipe

[email protected]
Newsgroups php.notes
Message-ID <[email protected]>
Note Submitter: gurke at bigfoot dot com 

----

usefull if you need to convert decimal colors to html style hex colors:

function hexColor($color) {
 return sprintf("%02X%02X%02X",$color[0],$color[1],$color[2]);
}

example:

$col[0] = 25;
$col[1] = 255;
$col[2] = 55;

print hexColor($col);
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.