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.
strpos function in reverse in php
,strrpos()
turns up in third place for me. Thanks! – Tuber