fork(1) download
  1. <?php
  2.  
  3. function mb_ucfirst($text) {
  4. return mb_strtoupper(mb_substr($text, 0, 1)) . mb_substr($text, 1);
  5. }
  6.  
  7.  
  8. $str = 'строка1 строка2 строка3';
  9. $arr = explode(' ', $str);
  10. foreach($arr as $k=>&$word){
  11. $word = '"' . mb_ucfirst($word) . '"';
  12. }
  13. echo implode(' ', $arr);
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
"Строка1" "Строка2" "Строка3"