fork(1) download
  1. <?php
  2.  
  3.  
  4. $text = "А роза упала на лапу Азора";
  5.  
  6. $text = str_replace(" ", "", $text);
  7. $text = mb_strtolower ($text);
  8.  
  9. $lenght = mb_strlen ($text);
  10. $halfLenght = floor ($lenght/2);
  11.  
  12. for ($i = 0; $i <= $halfLenght; $i++) {
  13. $x=$lenght-($i);
  14. if ($text[$i] == $text[$x]) {
  15. $result = "polinom";
  16. } else {
  17. $result = "nepolinom";
  18. break;
  19. }
  20. }
  21.  
  22. echo "$result";
  23.  
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
21nepolinom