fork(1) download
  1. <?php
  2.  
  3. $text = "so well. i haven't checked out black mesa yet.was meaning to download it ,but haven't been able to make time.";
  4.  
  5. $brokenText = preg_split('/([.!?]+)\\s*/', $text, 0, PREG_SPLIT_DELIM_CAPTURE);
  6.  
  7. foreach($brokenText as $sentence){
  8. $sentence = str_replace(substr($sentence, 0, 1), strtoupper(substr($sentence, 0, 1)), $sentence);
  9. echo "$sentence <br />";
  10. }
  11.  
  12. ?>
Success #stdin #stdout 0s 82624KB
stdin
Standard input is empty
stdout
So well <br />. <br />I haven't checked out black mesa yet <br />. <br />Was meaning to doWnload it   ,but haven't been able to make time <br />. <br /> <br />