函数:strrpos() |
strrpos寻找字符串中某字符最后出现处。 语法: int strrpos(string haystack, char needle); 返回值: 整数 函数种类: 资料处理
本函数用来寻找字符串 haystack 中的字符 needle 最后出现的位置。值得注意的是 needle 只能是一个字符,中文字等就不适合了。若找不到指定的字符,则返回 false 值。
strpos() strrchr() substr() strstr() 整理: (www.phpernote.com)
|