July 2004
Intermediate to advanced
350 pages
10h 9m
English
In PHP 4, strpos( )
uses an entire string as a needle, whereas strrpos( ) limits the needle to a single character. If you pass
strrpos( ) a string of more than one character, it
silently uses only the first character.
In PHP 5, strrpos( ) and strripos( ) now behave identically to strpos( ),
in that they find strings instead of just the first character.