PHP substr_replace() Function

The substr_replace() function replaces a part of a string with another string.

mixed substr_replace ( mixed $string , mixed $replacement , mixed $start [, mixed $length ] )

substr_replace() replaces a copy of string delimited by the start and (optionally) length parameters with the string given in replacement.

Example -

Example #1 Simple substr_replace() examples

Example #2 Using substr_replace() to replace multiple strings at once

ParameterDescription
stringThe input string.An array of strings can be provided, in which case the replacements will occur on each string in turn. In this case, the replacement, start and length parameters may be provided either as scalar values to be applied to each input string in turn, or as arrays, in which case the corresponding array element will be used for each input string.
replacementThe replacement string.
startIf start is non-negative, the replacing will begin at the start'th offset into string.If start is negative, the replacing will begin at the start'th character from the end of string.
lengthIf given and is positive, it represents the length of the portion of string which is to be replaced. If it is negative, it represents the number of characters from the end of string at which to stop replacing. If it is not given, then it will default to strlen( string ); i.e. end the replacing at the end of string. Of course, if length is zero then this function will have the effect of inserting replacement into string at the given start offset.

The result string is returned. If string is an array then array is returned..