Created
December 20, 2018 11:28
-
-
Save Padilo300/16aa8c08613867de77a13a56ba8fbb6f to your computer and use it in GitHub Desktop.
Рандомные номера украинских операторов
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
$UA = array('067', '096', '097', '098', '050', '066', '095', '099', '063', '073', '093' ); | |
$start = array('+38','38','8',''); | |
for($i=0; $i < 100;){ | |
usleep(4000); | |
$str = $start[rand(0,3)] . $UA[rand(0,10)] . rand(0000000,9999999); | |
echo $str . '<br><hr>'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment