fork download
  1. <?php
  2.  
  3.  
  4. $text = "Аргентина манит негра";
  5. $result = "палиндром!!!";
  6.  
  7. $text = mb_strtolower($text);
  8. $text = str_replace(" ","",$text);
  9.  
  10. $length = mb_strlen($text);
  11. $halflength = floor($length / 2);
  12.  
  13. for ($i = 0; $i <= $halflength; $s++) {
  14. $symbol = mb_substr($text, $i, 1);
  15. $symbol2 = mb_substr($text, $i, -1);
  16. if ($symbol == $symbol2);
  17. echo"$result";
  18. break;
  19. If($symbol != $symbol2);
  20. echo"Не палиндром";
  21. break;
  22. }
  23.  
  24.  
Success #stdin #stdout 0.01s 24448KB
stdin
Standard input is empty
stdout
палиндром!!!