Last active
August 29, 2015 14:25
-
-
Save hdogan/2c2b3ea40854cc541eef to your computer and use it in GitHub Desktop.
PHPKonf 2015 için bilet kazananları belirleme kodcuğu.
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
@mrtozkanli | |
@zaherg | |
@ErhanPaker | |
@GurayYildirim | |
@elmor34 | |
@bahadircakmak | |
@ibrahimmumcu | |
@iclalsuzgun | |
@EmreKizildas | |
@wardumpp |
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
<?php | |
/** | |
* PHPKonf 2015 için bilet kazananları belirleme kodcuğu. | |
* Daha önce bilet almış kişiler (beyan eden), kendimiz ve konuşmacılar tabiki çıkartılmıştır. | |
* | |
* @author Yazılım Parkı <[email protected]> | |
* @license http://opensource.org/licenses/MIT MIT | |
*/ | |
$rt_edenler = [ | |
'@mrtozkanli', | |
'@zaherg', | |
'@ErhanPaker', | |
'@uralozden', | |
'@EmreeAykut', | |
'@erayusta', | |
'@GurayYildirim', | |
'@ktumit', | |
'@elmor34', | |
'@bahadircakmak', | |
'@selahattinunlu', | |
'@cemipekci', | |
'@ibrahimmumcu', | |
'@iclalsuzgun', | |
'@tugbacevizci', | |
'@frknbasaran', | |
'@nurettintopal', | |
'@EmreKizildas', | |
'@wardumpp', | |
]; | |
$anahtarlar = array_rand($rt_edenler, 10); | |
foreach ($anahtarlar as $anahtar) { | |
echo $rt_edenler[$anahtar] . PHP_EOL; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment