时间:2021-07-01 10:21:17 帮助过:22人阅读
对于stristr()函数,在此我只用实例来说明:
参数 | 描述 |
---|---|
string | 必须,被搜索的字符串 |
search | 必须 , 要搜索的字符串 |
before_search | 可选,默认false,返回字符串在string字符串中第一次出现,本身以及其结尾的剩余部分;true,返回字符串第一次出现之前的字符串部分 |
注:stristr()函数不区分,字符串大小写,如果要区分大小写,请用strstr() 函数
For Example:
one:
echo stristr("google earch!!!",earch);
output: earch!!!
two:
echo stristr("google earch!!!",earch,true);
output: google
').addClass('pre-numbering').hide();
$(this).addClass('has-numbering').parent().append($numbering);
for (i = 1; i <= lines; i++) {
$numbering.append($('').text(i));
};
$numbering.fadeIn(1700);
});
});
以上就介绍了PHP stristr函数,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。