fork(1) download
  1. <?php
  2. $str='мы носим в себе чудеса, которые ищем вовне';
  3. $str=explode(' ',$str);
  4. for($i=0;$i<count($str);$i++){
  5. $str[$i]=$i%3==0?mb_convert_case($str[$i],MB_CASE_TITLE,"UTF-8"):$str[$i];
  6. }
  7. $str=implode(' ',$str);
  8. echo $str;
Success #stdin #stdout 0.02s 24448KB
stdin
Standard input is empty
stdout
Мы носим в Себе чудеса, которые Ищем вовне