Home >> PHP >> strrpos() function in PHP

strrpos() function in PHP

The strrpos() function used for find the position of the last occurrence of a substring in a string.

Syntax

strrpos(string,find,start)

Example

echo strrpos('Hello dear, how are you','how');

Output

12

Post Your Comment

Next Questions
strspn() function
strstr() function
strtok() function
strtolower() function
strtoupper() function
strtr() function
substr() function
substr_compare() function
substr_count() function
substr_replace() function
trim() function
ucfirst() function
ucwords() function
wordwrap() function
array
Array type
Numeric array
Associate array
Multidimensional array
array() function
array_change_key_case() function
array_chunk() function
array_combine() function
array_count_values() function
array_diff() function

Copyright ©2022 coderraj.com. All Rights Reserved.