PHP Manual

PHP function substr_replace()

11. 09. 2019

Obsah článku

Availability in `PHP 4.0`

Replacing text in part of a string

Parameters

Parameter Data type Default value Note
$string mixed not String being processed.
$replacement string not Replacement string.
$start int not If start is positive, the replacement will start from the initial offset into the string.
$length int null If specified and positive, represents the length of the part of the string to be replaced. If negative, it represents the number of characters from the end of the string at which the replacement is to stop. If not specified, then the value strlen( string ) is used by default; that is, the replacement is terminated at the end of the string. Of course, if the length is zero, then this function will result in the substitution being inserted into the string at the specified starting offset.

Return values

mixed

Returns the resulting string. If the string is an array, an array is returned.

Additional resources

Official substr-replace documentation

Jan Barášek   Více o autorovi

Autor článku pracuje jako seniorní vývojář a software architekt v Praze. Navrhuje a spravuje velké webové aplikace, které znáte a používáte. Od roku 2009 nabral bohaté zkušenosti, které tímto webem předává dál.

Rád vám pomůžu:

Související články

1.

V jiných jazycích

2.
Status:
All systems normal.
2024