fork download
  1. <?php
  2.  
  3. // your code goes here <?php
  4.  
  5.  
  6. $text="А роза упала на лапу Азора";
  7.  
  8. $text=str_replace(" ","",$text);
  9. $text=mb_strtolower($text);
  10. $lenght=mb_strlen($text);
  11. $textarray= preg_split("//u",$text);
  12.  
  13. for($i=$lenght;$i>=0;$i--) {
  14. $text1.=$textarray[$i];
  15. }
  16.  
  17. if ($text1==$text) {
  18. echo "палиндром";
  19. } else {
  20. echo "не палиндром";
  21. }
  22.  
  23. ?>
  24.  
Success #stdin #stdout #stderr 0.02s 52432KB
stdin
Standard input is empty
stdout
палиндром
stderr
PHP Notice:  Undefined variable: text1 in /home/WBQ9kU/prog.php on line 16