Guest User

Untitled

a guest
Jan 21st, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. function strReplaceFirst($search, $replace, $subject)
  2. {
  3. $pos = strpos($subject, $search);
  4. if ($pos !== false) {
  5. return substr_replace($subject, $replace, $pos, strlen($search));
  6. }
  7. return $subject;
  8. }
Add Comment
Please, Sign In to add comment