fork(4) download
  1. <?php
  2.  
  3.  
  4. $text = "ну что. не смотрел еще black mesa.я собирался скачать ,но все как-то некогда было.";
  5. // Для тестов
  6. $text1 = "roses are red,and violets are blue.whatever you do i'll keep it for you.";
  7. $text2 = 'привет.есть 2 функции,preg_split и explode ,не понимаю,в чем между ними разница.';
  8. function makeFirstLetterUppercase($text) {
  9. $sent = preg_split("/\\./", $text, 0, PREG_SPLIT_NO_EMPTY);
  10. foreach ($sent as $number => $sentence) {
  11. if (mb_substr(0, 1, $sentence) != " ") {
  12. $sentence = " ". $sentence;
  13. }
  14. $newSentence = preg_replace("/\\s?([,!?])\\s?/u", '$1 ', $sentence); //знаки препинания
  15. $newSentence = preg_replace("/\\s{2,}/u", ' ', $sentence); //повторяющийся пробел
  16. $firstLeter = mb_strtoupper(mb_substr($newSentence, 1,1));
  17. $newSentence = preg_replace("/^ (\\w)/u", " {$firstLeter}", $newSentence);
  18. $newText = $newText . $newSentence. ".";
  19. }
  20. return $newText;
  21. }
  22. $newText = makeFirstLetterUppercase($text);
  23. echo "{$newText}\n";
  24. $newText = makeFirstLetterUppercase($text1);
  25. echo "{$newText}\n";
  26. $newText = makeFirstLetterUppercase($text2);
  27. echo "{$newText}\n";
Success #stdin #stdout #stderr 0.02s 52472KB
stdin
Standard input is empty
stdout
 Ну что. Не смотрел еще black mesa. Я собирался скачать ,но все как-то некогда было.
 Roses are red,and violets are blue. Whatever you do i'll keep it for you.
 Привет. Есть 2 функции,preg_split и explode ,не понимаю,в чем между ними разница.
stderr
PHP Notice:  Undefined variable: newText in /home/zar7d3/prog.php on line 20
PHP Notice:  Undefined variable: newText in /home/zar7d3/prog.php on line 20
PHP Notice:  Undefined variable: newText in /home/zar7d3/prog.php on line 20