PHP: strrchr() function
PHP: Find the last occurrence of a character in a string
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 searched 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
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/php/function-reference/strrchr.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics