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