fork(3) download
  1. <?php
  2.  
  3.  
  4. $text = "А роза упала на лапу азора";
  5. $result = 'palindrom';
  6.  
  7. $modText = mb_strtolower($text);
  8. $modText = str_replace(" ", "", $modText);
  9.  
  10. $length = mb_strlen($text);
  11. $halfLength = floor($length/2);
  12. $modLength = mb_strlen($modText);
  13.  
  14. for ($i = 0, $k = $modLength - 1; i < $halfLength; $i++, $k--) {
  15. /* idem po slovu, berem po bukve s koncov i sravnivaem */
  16. if ( mb_substr($modText, $i, 1) != mb_substr($modText, $k, 1)) {
  17. break;
  18. }
  19. echo mb_substr($modText, $i, 1)."==".mb_substr($modText, $k, 1)."\n";
  20. }
  21.  
  22. echo $modText;
Success #stdin #stdout #stderr 0s 52488KB
stdin
Standard input is empty
stdout
а==а
р==р
о==о
з==з
а==а
у==у
п==п
а==а
л==л
а==а
н==н
а==а
л==л
а==а
п==п
у==у
а==а
з==з
о==о
р==р
а==а
арозаупаланалапуазора
stderr
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/54lEmO/prog.php on line 16