simplepage/tools.php

9 lines
124 B
PHP
Raw Permalink Normal View History

2021-11-14 21:40:27 +01:00
<?php
function hex2rgb($hexcode){
list($r, $g, $b) = sscanf($hexcode, "#%02x%02x%02x");
return "$r, $g, $b";
}
?>