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