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