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中文網其他相關文章!