Answers for "php convert string to hex color"

PHP
1

php number to color

$n = 5;
$color = "#".substr(md5($n),0,6);//#e4da3b
Posted by: Guest on February-12-2020

Code answers related to "php convert string to hex color"

Browse Popular Code Answers by Language