note 12156 deleted from function.dechex by felipe
| 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);