fork download
  1. <?php
  2.  
  3. $value = " Some example here for you ";
  4. $result = preg_replace('/^\S+(?:\s+\S+){2}\K\s+/', ',$0', trim($value), 1);
  5. echo $result;
  6.  
Success #stdin #stdout 0s 82624KB
stdin
Standard input is empty
stdout
Some example here, for you