Is there a negativ strpos simular to javas method lastIndexOf in the String class?
This statement [java] new String("aa bb cc aa").lastIndexOf("aa"); [/java] would return stringindex 9.
What is the PHP equivalence?
Regards, Jon
perhaps
http://www.php.net/manual/en/function.strrpos.php
is what you need.
Thanks.
Exactly it!
/Jon