Skip to content

Instantly share code, notes, and snippets.

@ardakazanci
Created October 15, 2017 09:06
Show Gist options
  • Save ardakazanci/151f256df71f740fa88d2eaacfe6a49e to your computer and use it in GitHub Desktop.
Save ardakazanci/151f256df71f740fa88d2eaacfe6a49e to your computer and use it in GitHub Desktop.
<?php
$oyuncu_isimleri = ['A','B','C','D','E','F','G'];
for($harf1=1;$harf1<=2;$harf1++){
$rastgele_indis = rand(0,6);
$isim = $oyuncu_isimleri[$rastgele_indis];
for($harf2=1;$harf2<=2;$harf2++){
$rastgele_indis = rand(0,6);
$isim .= $oyuncu_isimleri[$rastgele_indis];
}
}
echo $isim;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment