fork download
  1. <?php
  2.  
  3.  
  4. $text = "so what. u still dont watch black mesa.i will dowload it ,but i dont have any time.";
  5. // Для тестов
  6. // $text = 'roses are red,and violets are blue.whatever you do i'll keep it for you.';
  7. // $text = 'привет.есть 2 функции,preg_split и explode ,не понимаю,в чем между ними разница.';
  8.  
  9. $lines = preg_split("/(?<=\\.)/",$text, -1, PREG_SPLIT_NO_EMPTY);
  10. /*$result = ucfirst($lines);*/
  11. print_r($lines);
  12.  
  13.  
  14. function makeFirstLetterUppercase($lines)
  15. {
  16. foreach($lines as $upper)
  17. {
  18. $upper = ucfirst($lines);
  19. print_r($upper);
  20. }
  21. print_r($upper);
  22. }
  23.  
  24. /* исправляет текст */
  25. function fixText($text)
  26. {
  27.  
  28.  
  29. }
  30.  
  31.  
  32. $result = fixText($text);
  33. echo "{$result}\n";
  34. makeFirstLetterUppercase($text);
Success #stdin #stdout #stderr 0s 82624KB
stdin
Standard input is empty
stdout
Array
(
    [0] => so what.
    [1] =>       u still dont watch black mesa.
    [2] => i will dowload it  ,but i dont have any time.
)

stderr
PHP Warning:  Invalid argument supplied for foreach() in /home/KmbgO4/prog.php on line 17
PHP Notice:  Undefined variable: upper in /home/KmbgO4/prog.php on line 22