simplepage/tools.php

9 lines
124 B
PHP
Executable File

<?php
function hex2rgb($hexcode){
list($r, $g, $b) = sscanf($hexcode, "#%02x%02x%02x");
return "$r, $g, $b";
}
?>