首頁  >  文章  >  後端開發  >  PHP中的stristr()函數

PHP中的stristr()函數

WBOY
WBOY轉載
2023-09-10 22:09:091739瀏覽

PHP中的stristr()函數

stristr() 函數用來搜尋一個字串在另一個字串中第一次出現的位置。

注意 - 此函數不區分大小寫

語法
stristr(str, search, before_search)

參數

  • str - 要搜尋的字串

  • search - 要搜尋的字串

  • before_search - 一個布林值,預設值為「false」。如果設定為“true”,則傳回第一次出現搜尋參數之前的字串部分。

傳回

stristr()函數傳回符合的子字串。

範例

以下是範例-

 即時示範

<?php
$mystr = &#39;Tom Hanks!&#39;;
if(stristr($mystr, &#39;Tim&#39;) === FALSE) {
   echo &#39;Tim is not in the string!&#39;;
}
?>

輸出

Tim is not in the string!

範例

以下是範例-

 現場示範

<?php
echo stristr("Demo text!","TEXT",true);
?>

輸出

Demo

以上是PHP中的stristr()函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除

相關文章

看更多