fork(2) download
  1. <?php
  2.  
  3.  
  4. $resultTrue = 'Всё таки палиндром!';
  5. $resultFalse = 'не палиндром!';
  6.  
  7. $text = "А роза упала на лапу Азора";
  8. $text = mb_strtolower($text);
  9. $text = str_replace(" ", "", $text);
  10. $text2 = str_replace(" ", "", $text);
  11.  
  12. $text3 = explode($text2);
  13. $text4 = array_reverse($text3);
  14. $text5 = implode($text4);
  15.  
  16. echo "Палиндром - {$text}, Нечто совершенно иное - {$text5}.\n";
  17.  
  18. if ($text == $text3) {
  19. echo $resultTrue;
  20. } else {
  21. echo $resultFalse;
  22. }
Success #stdin #stdout #stderr 0.02s 24448KB
stdin
Standard input is empty
stdout
Палиндром - арозаупаланалапуазора, Нечто совершенно иное - .
не палиндром!
stderr
PHP Warning:  explode() expects at least 2 parameters, 1 given in /home/svTejN/prog.php on line 14
PHP Warning:  array_reverse() expects parameter 1 to be array, null given in /home/svTejN/prog.php on line 15
PHP Warning:  implode(): Argument must be an array in /home/svTejN/prog.php on line 16