fork download
  1. <?php
  2. $answers = array(
  3. 'yes',
  4. 'no',
  5. 'idk',
  6. 'never',
  7. 'you can do this',
  8. 'you should to ask anon'
  9. );
  10.  
  11. $question = "can I learn PHP for free?";
  12. $answer =$answers[array_rand($answers)];
  13.  
  14. echo"{$question}\n";
  15. echo"{$answer} i guess\n";
  16. ?>
Success #stdin #stdout 0.02s 52480KB
stdin
Standard input is empty
stdout
can I learn PHP for free?
yes i guess