fork(1) download
  1. <?php
  2. //проверка на палиндром
  3.  
  4. $text = "123454321";
  5. $text = mb_strtolower($text);
  6. $text = str_replace(' ', '', $text);
  7.  
  8. $length = floor(mb_strlen($text)/2);
  9.  
  10. $answer = 'палиндром';
  11.  
  12. for ($i=0; $i<$length; $i++) {
  13. $s = mb_substr($text, $i, 1);
  14. $f = mb_substr($text, -$i-1, 1);
  15. echo "$s - $f\n";
  16. if ($s != $f) {
  17. $answer = 'непалиндром';
  18. }
  19. }
  20.  
  21. echo $answer;
Success #stdin #stdout 0.01s 24400KB
stdin
Standard input is empty
stdout
1 - 1
2 - 2
3 - 3
4 - 4
палиндром