strpos function in reverse
I would like to find a method where i can find a character position in reverse.For example last "e" starting count in reverse.
From example
$string="Kelley";
$strposition = strpos($string, 'e');
it will give me position 1.