fork(1) download
  1. <?php
  2.  
  3.  
  4. $text = "А роза упала на лапу азора";
  5.  
  6. $testText = mb_strtolower($text);
  7. $testText = str_replace(" ", "", $testText);
  8. $testText = preg_split("//u", $testText);
  9.  
  10. for ($i=0; $i < count($testText) / 2; $i++) {
  11. if ($testText[$i] == $testText[count($testText) - $i - 1]) {} else {
  12. echo "Это не палиндром";
  13. exit();
  14. }
  15. }
  16.  
  17. echo "Это палиндром)0))";
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
Это палиндром)0))