网站首页

>>

PHP初级教程手册


函数:strrpos()



strrpos

寻找字符串中某字符最后出现处。

语法: int strrpos(string haystack, char needle);

返回值: 整数

函数种类: 资料处理

内容说明

本函数用来寻找字符串 haystack 中的字符 needle 最后出现的位置。值得注意的是 needle 只能是一个字符,中文字等就不适合了。若找不到指定的字符,则返回 false 值。

参考

strpos()  strrchr()  substr()  strstr()  



整理: (www.phpernote.com)

[ 上一页 下一页 ]

|