PHP substr() Function

The substr() function returns a part of a string.

string substr ( string $string , int $start [, int $length ] )

Returns the portion of string specified by the start and length parameters.

Example -

Example #1 Using a negative start

Example #2 Using a negative length

Example #3 Basic substr() usage

Example #4 substr() casting behaviour

ParameterDescription
stringThe input string. Must be one character or longer.
startIf start is non-negative, the returned string will start at the start'th position in string, counting from zero. For instance, in the string 'abcdef', the character at position 0 is 'a', the character at position 2 is 'c', and so forth.If start is negative, the returned string will start at the start'th character from the end of string.If string is less than start characters long, FALSE will be returned.
lengthIf length is given and is positive, the string returned will contain at most length characters beginning from start (depending on the length of string).If length is given and is negative, then that many characters will be omitted from the end of string (after the start position has been calculated when a start is negative). If start denotes the position of this truncation or beyond, FALSE will be returned.If length is given and is 0, FALSE or NULL, an empty string will be returned.If length is omitted, the substring starting from start until the end of the string will be returned.

Returns the extracted part of string; or FALSE on failure, or an empty string.