fork(1) download
  1. <?php
  2. $text="А роза упала на лапу";
  3. $result="palindrom";
  4. $text=mb_strtolower($text);
  5. $stroka = preg_replace('/\s+/', '', $text);
  6. $lenght=mb_strlen($text);
  7. $halfLenght=floor($lenght)/2;
  8. for ($i = 0; $i <= $halfLenght; $i++)
  9. $symbol1 = mb_substr($stroka, $i, 1);
  10. $symbol2 = mb_substr($stroka, $i, -1);
  11.  
  12. if ($symbol1 = $symbol2) {
  13. echo "Результат проверки - {$result}";
  14. }
  15.  
  16. else {
  17. echo "Результат проверки - ghjjjk";
  18. }
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
Результат проверки - palindrom