Created
September 29, 2012 23:41
-
-
Save nitrix/3805429 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
<?php | |
$question = 'Why isn\'t anybody asking questions!?'; | |
$causes = array('it\'s late', 'we talk too much and scare them', 'somebody just asked one', '42'); | |
if ($this->destination == 'Jmz') { | |
echo 'A mystic error occurred! Please try-again!'."\n"; | |
exit(); | |
} | |
$n = rand(0, count($causes)-1); | |
echo $question."\n".'Because '.$causes[$n]."\n"; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment