Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Padilo300/16aa8c08613867de77a13a56ba8fbb6f to your computer and use it in GitHub Desktop.
Save Padilo300/16aa8c08613867de77a13a56ba8fbb6f to your computer and use it in GitHub Desktop.
Рандомные номера украинских операторов
<?
$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