stristr() 函数用于搜索一个字符串在另一个字符串中第一次出现的位置。
注意 - 该函数不区分大小写
语法stristr(str, search, before_search)
str - 要搜索的字符串
search - 要搜索的字符串
before_search - 一个布尔值,默认值为“false”。如果设置为“true”,则返回第一次出现搜索参数之前的字符串部分。
stristr()函数返回匹配的子字符串。
以下是示例 -
实时演示
<?php $mystr = 'Tom Hanks!'; if(stristr($mystr, 'Tim') === FALSE) { echo 'Tim is not in the string!'; } ?>
Tim is not in the string!
以下是示例 -
现场演示
<?php echo stristr("Demo text!","TEXT",true); ?>
Demo
以上是PHP中的stristr()函数的详细内容。更多信息请关注PHP中文网其他相关文章!