fork(2) download
  1. <?php
  2.  
  3. $text = "А роза упала на лапу Азора";
  4. $result = "палиндром";
  5.  
  6. $text = mb_strtolower($text);
  7. $text = str_replace(" ","",$text);
  8. $length = mb_strlen($text);
  9. $halfLength = floor ($length/2);
  10.  
  11. for ($i=0; $i<=$halfLength;$i++){
  12. $ch1=mb_substr($text,$i,1);
  13. $ch2=mb_substr($text,(-1,$i);
  14. if ($ch1==$ch2){
  15. echo "Проверка {$i}-ой буквы: {$ch1} совпадает с {$ch2}\n";
  16. }
  17. elseif($ch1!=$ch2) {
  18. echo "Не совпадает {$ch1} не совпадает с {$ch2}";
  19. break;
  20. }
  21. }
Runtime error #stdin #stdout #stderr 0.03s 52480KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Parse error:  syntax error, unexpected ',' in /home/60mNo6/prog.php on line 15