stripos():寻找字符串某字符最先出现的位置,不区分大小写
echo stripos('hello world', 'O');//4
调用:int stripos(string haystack,stringneedle[,int $offset])
strrpos():寻找某字符串中某字符最后出现的位置
echo strrpos('hello world', 'o');//7
调用:int strrpos(string haystack, stringneedle[,int $offset])
strripos():寻找某字符串中某字符最后出现的位置,不区分大小写
echo strripos("hello world", "O");//7
调用:int strripos(string haystack, stringneedle[, int $offset])
strspn():返回字符串中首次符合mask的子字符串长度
调用:int strspn(string str1, stringstr2[,int start[,intlength]])
strcspn():返回字符串中不符合mask的字符串的长度
调用:int strcspn(string str1, stringstr2[,int start[, intlength]])
输入:str1被查询,str2查询字符串,start开始查询的字符,length是查询长度
输出:返回从开始到第几个字符串
网友评论