PHP : strrchr() function
Description
The strrchr() function is used to find the position of the last occurrence of a string within another string (main string).
Version
(PHP 4 and above)
Syntax
strrchr(main_string, search_string)
Parameters
| Name | Description | Required / Optional |
Type |
|---|---|---|---|
| main_string | The string to be search in. | Required | String |
| search_string | The searched string. | Required | String |
Return value
The portion of string, or FALSE if search_string not found.
Value Type : String.
Example :
<?php $main_string='The strrchr() function find the position of the last occurrence of a string within another string....'; echo strrchr($main_string, 'string'); ?>
Output :
string....
View the example in the browser
See also

