fork download
  1. <?php
  2.  
  3.  
  4. $text = "А роза упала на лапу Азора";
  5. $result = 'Палиндром';
  6.  
  7.  
  8. $nText = str_replace(" ","",$text);
  9.  
  10. $nText1 = mb_strtolower($nText);/* Тут меня беспокоит, что я ввёл 2 новые
  11.   переменные можноли их не вводить? */
  12.  
  13. $length = mb_strlen($nText1);
  14. $halfLength = floor($length/ 2);
  15.  
  16. for ($i = 0; $i <= $halfLength; $i++) { /* А тут я понятия не имею что делать?*/
  17. $symbol = mb_substr($nText1, $i ,1)
  18.  
Runtime error #stdin #stdout #stderr 0.02s 24400KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Parse error:  syntax error, unexpected end of file in /home/ukvKZV/prog.php on line 20