Hackvent_2019/Day 23/test.php
Roman Hergenreder 18c8bd9075 Day 23
2019-12-29 19:05:28 +01:00

19 lines
309 B
PHP

<?php
// for($i = 0; $i < 1000; $i++)
// print(microtime(true) . "\n");
srand(1);
$alphabet = 'abcdefghijkmpqrstuvwxyzABCDEFGHJKLMPQRSTUVWXYZ23456789';
$out = "";
for($j = 0; $j < 12; $j++) {
$rand_key = rand(0, 54 - 1);
// var_dump($rand_key);
$out .= $alphabet[$rand_key];
}
var_dump($out);
?>