fork download
  1. <?php
  2. $text = "Я иду с мечем, судия!";
  3. $textToCompare = mb_strtolower(str_replace([' ', '!', ',', '?', '.', '-', '_', '+', '*', '/', '\\'], "", $text));
  4. $result = "Палиндром";
  5. for ($i = 0; $i < floor(mb_strlen($textToCompare)) / 2; $i++) {
  6. if (mb_substr($textToCompare, $i, 1) !== mb_substr($textToCompare, -$i-1, 1)):
  7. $result = "Не палиндром"; break;
  8. endif;
  9. }
  10. echo $result;
Success #stdin #stdout 0.02s 24432KB
stdin
Standard input is empty
stdout
Палиндром