PHP: strripos() function
Description
The strripos() function is used to find the position of the last occurrence of a case-insensitive string in a string.
Version:
(PHP 5)
Syntax:
strripos(main_string, search_string, start_position)
Parameters:
Name | Description | Required / Optional |
Type |
---|---|---|---|
main_string | Specifies the string to examined. | Required | String |
search_string | Specifies the string to search with. | Required | String |
start_position | Sets the starting position of the first string. | Optional | Integer |
Return value:
Returns the numerical position of the last occurrence of seacrh_string.
Value Type: Integer.
Pictorial Presentation
Example:
<?php$main_string='w3resource.com';echo strripos($main_string, 'COM');?>
Output:
11
View the example in the browser
See also
PHP: Tips of the Day
PHP: Remove first 4 characters of a string with PHP
You could use the substr function to return a substring starting from the 5th character:
$str = "The quick brown fox jumps over the lazy dog." $str2 = substr($str, 4); // "quick brown fox jumps over the lazy dog."
Ref : https://bit.ly/2LJDLQx
- New Content published on w3resource:
- Scala Programming Exercises, Practice, Solution
- Python Itertools exercises
- Python Numpy exercises
- Python GeoPy Package exercises
- Python Pandas exercises
- Python nltk exercises
- Python BeautifulSoup exercises
- Form Template
- Composer - PHP Package Manager
- PHPUnit - PHP Testing
- Laravel - PHP Framework
- Angular - JavaScript Framework
- React - JavaScript Library
- Vue - JavaScript Framework
- Jest - JavaScript Testing Framework