fork(2) download
  1. <?php
  2.  
  3.  
  4. $text = "А роза упала на лапу Азора";
  5. $result = "палиндром";
  6.  
  7. $text = mb_strtolower($text);
  8. str_replace(" ","",$text);
  9.  
  10. $length = mb_strlen($text);
  11. $halfLength = floor($length/ 2);
  12.  
  13. for ($i = 0; $i <= halfLength; $i++) {
  14. $beginningLine = mb_substr($text, $halfLength);
  15. $endingLine = mb_substr($text, -$halfLength);
  16. }
  17. if ($beginningLine == $endingLine) {
  18. echo " Результат: {$result}\n";
  19. }
  20.  
Success #stdin #stdout #stderr 0.02s 52472KB
stdin
Standard input is empty
stdout
 Результат: палиндром
stderr
PHP Notice:  Use of undefined constant halfLength - assumed 'halfLength' in /home/h2krbR/prog.php on line 14
PHP Notice:  Use of undefined constant halfLength - assumed 'halfLength' in /home/h2krbR/prog.php on line 14