fork(2) download
  1. <?php
  2. $text="А роза упала на лапу Анора";
  3. $text2=mb_strtolower($text);
  4. $text3=str_replace(" ","",$text2);
  5. function strrev_en($text4){
  6. $text4 = iconv('utf-8', 'windows-1251', $text4);
  7. $text4 = strrev($text4);
  8. $text4 = iconv('windows-1251', 'utf-8', $text4);
  9. return $text4;
  10. }
  11. $text4=strrev_en($text3);
  12. if($text3==$text4){
  13.  
  14. echo "Введённый текст - палиндром.";
  15. }
  16. else{
  17.  
  18. echo "Введённый текст - не палиндром.";
  19. }
  20.  
  21. ?>
  22.  
  23. // your code goes here
Success #stdin #stdout 0.02s 52520KB
stdin
Standard input is empty
stdout
Введённый текст - не палиндром.
// your code goes here