fork download
  1. <?php
  2.  
  3. // your code goes here
  4. $wall_text = 'Помощь';
  5. if (preg_match('/Помощь/i', $wall_text)) {
  6. $text = random (array('Что','Какие команды','Ты о чем'));
  7. echo $text;
  8. }elseif (preg_match('/Привет/i', $wall_text)) {
  9. $text = 'Привет';
  10. }elseif(preg_match('/Как дела/i', $wall_text)) {
  11. $text = ("да ну нахуй");
  12.  
  13. }
  14.  
  15. function random($text){
  16. $rand = mt_rand (0, count($text)-1);
  17. return $text[$rand];
  18. }
Success #stdin #stdout 0.01s 82944KB
stdin
Standard input is empty
stdout
Ты о чем