Random Code(Color Hex Generator)

Random Code(Color Hex Generator)
Gavin Wednesday 21st June 2023, 17:58:14I don't know why I am doing this, but I have made a custom HEX color generator
<?php
//$loop is how many generated hex code you would want to have.
function genHex(int $loop):array {
$hex = array();
$list = '0123456789abcdef';
for($i=0;$i<$loop;$i++){
$h='#';
for($k=0;$k<6;$k++){
$rand = rand(0,strlen($list)-1);
$l = str_split($list);
$h.=$l[$rand];
}
$hex[$h] = $h;
}
return $hex;
}
?>
Last modified by Gavin on Thursday 22nd June 2023, 11:50:00
A Web developer and web security programmer
Replies 3

That's great, but you can do it more simply like this ๐ :
function genHex(int $loop): array {
$hexArray = [];
for ($i = 0; $i < $loop; $i++) {
$hexArray[] = sprintf('#%06X', mt_rand(0, 0xFFFFFF));
}
return $hexArray;
}
Last modified by Simon on Sunday 25th June 2023, 17:28:00

I was always told that simple is lazy work. ๐
I don't know why, I take the longest and more complex why, then I should have attended,
Thanks for the "shorted version" of it.
I don't know why, I take the longest and more complex why, then I should have attended,
"if it works, then it's fine"
Thanks for the "shorted version" of it.
Last modified by Gavin on Sunday 25th June 2023, 18:49:00
A Web developer and web security programmer
Suggested Topics

eli@31e26baf
started Is there support for IFRAME embeds?
General Questions

Jan@3726afb8
started Different browse problem
Bug reports

RED-LINE@42796168
started translation Some new strings for better translation
Feature Requests

AlexanderLiebrecht
started ๐ฉ๐ช How do I find out my own username if it is forgotten?
General Questions