Dec 29 / Karol Krizka

How To Insert A String Into Another String In PHP

Most programming languages have a function that allows you to insert one string into another string at a given position. For example, I can take the string blue and the string HI, and perform an operation blue.insert(HI,2) to get the resulatant string blHIue. But such a function does not come with the standard PHP library, at least not obviously. There is no function str_insert and a simple Google search does not bring any results. So one has to get creative and use the substr_replace function to insert a string into another by replacing a sub string of length 0 at the wanted position in the original.
The following is the arguments you should use to the substr_replace function if you want to insert one string into another string in PHP:
$newstring=substr_replace($orig_string, $insert_string, $position, 0);
Quite simple, no?

4 Comments

leave a comment
  1. - / Dec 23 2009

    Thanks!

  2. virtualTrader / Jan 6 2010

    Thanks, cool function!

  3. Litbea / Feb 21 2010

    Oh man, thanks a lot!

  4. Abdullah / Jul 18 2010

    Thanks for the time saving tip!

Leave a Comment