fork(1) download
  1. <?php
  2.  
  3.  
  4. $text = "а Роза упала на лапу Азора";
  5. $result1 = "Палиндром";
  6. $result0 = "Не палиндром";
  7.  
  8. $text = mb_strtolower($text);
  9. $text = str_replace(" ","",$text);
  10.  
  11. $leght = mb_strlen($text);
  12. $halfLeght = floor($leght/ 2);
  13.  
  14. for ($i = 0; $i <= $halfLeght; $i++) {
  15. $symbol = mb_substr($text, $i, 1);
  16. $end = -1 - $i;
  17. $endSymbol = mb_substr($text, $end, 1);
  18. if ($symbol != $endSymbol){
  19. echo "$result0";
  20. }
  21. }
  22. echo "{$result1} \n";
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
Палиндром