Rate this script:  I Love it  /   I Hate it

Convert an RGB color into a HEX color


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>

 

 
Convert an RGB color into a HEX color scripts | Convert an RGB color into a HEX color snippet | Convert an RGB color into a HEX color example | Convert an RGB color into a HEX color tutorial | Convert an RGB color into a HEX color code