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