PHP stristr函數傳回一個字串在另一個字串中開始位置到結束的字串,不區分大小寫,其語法是stristr(string,search,before_search),參數string必需,是規定被搜尋的字串;search必需,是規定要搜尋的字串。
php stristr函數怎麼用?
#php stristr()函數語法
語法:
stristr(string,search,before_search)
說明:
搜尋字串在另一個字串中的第一次出現。該函數是二進制安全的。此函數是不區分大小寫的。如需進行區分大小寫的搜索,請使用 strstr() 函數。php stristr()函數使用範例1:
<?php echo stristr("Hello php.cn!","php"); ?>
php.cn!
php stristr()函數使用範例2:
<?php echo stristr("i study php in php.cn!","study"); ?>
study php in php.cn!
以上是php stristr函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!