Author: WSE
Website: http://www.webscriptexpert.com
Usage
This is very self-explanatory.
Code
<?php
function rgb2hex($rgb){
return sprintf("%06X", $rgb);
}
/*
** Examples:
*/
print rgb2hex(0x00FF00);
// returns --> 00FF00
print rgb2hex(65280);
// returns --> 00FF00
?>
<p><center>Free php provided by <a href=http://www.webscriptexpert.com>Web Script Expert </a></center></p>
function rgb2hex($rgb){
return sprintf("%06X", $rgb);
}
/*
** Examples:
*/
print rgb2hex(0x00FF00);
// returns --> 00FF00
print rgb2hex(65280);
// returns --> 00FF00
?>
<p><center>Free php provided by <a href=http://www.webscriptexpert.com>Web Script Expert </a></center></p>
