fork download
  1. <?php
  2.  
  3. $answers = array(
  4. 1 => 'Just do it',
  5. 2 => 'Make your dreams come true',
  6. 3 => 'Nothing is impossible',
  7. 4 => 'Yesterday you said tomorrow',
  8. 5 => 'Do it',
  9. 6 => 'Dont let youe dreams be dreams',
  10. 7 => 'What are you waiting for?',
  11.  
  12. );
  13. $youGotDis = array_rand($answers,7);
  14. echo("Can i learn PHP without registration and SMS ?\n ");
  15. echo $answers[$youGotDis[0]]. "\n";
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
Can i learn PHP without registration and SMS ?
 Just do it