fork download
  1. <?php
  2.  
  3.  
  4. $text = "Херов орех";
  5. $result = "Палиндром!";
  6. $wrongResult = "Нихуя!";
  7.  
  8. $text = mb_strtolower($text);
  9. $text = str_replace(" ", "", $text);
  10.  
  11. $characters = preg_split("//u", $text);
  12.  
  13. $charactersReverse = array_reverse($characters);
  14.  
  15. if ($characters == $charactersReverse) {
  16. echo "$result";
  17.  
  18. } else {
  19. echo "$wrongResult";
  20. }
  21.  
Success #stdin #stdout 0.02s 24724KB
stdin
Standard input is empty
stdout
Палиндром!