fork(1) download
  1. <?php
  2.  
  3.  
  4. $text = "А роза упала на лапу Азора";
  5. $result = 'palindrom';
  6.  
  7. $modText = mb_strtolower($text);
  8. $modText = str_replace(" ", "", $modText);
  9.  
  10. if ($modtext == strrev($modtext)) {
  11. echo $result;
  12. }
Success #stdin #stdout #stderr 0.01s 52488KB
stdin
Standard input is empty
stdout
palindrom
stderr
PHP Notice:  Undefined variable: modtext in /home/y5cxMc/prog.php on line 12
PHP Notice:  Undefined variable: modtext in /home/y5cxMc/prog.php on line 12