php中strstr函數的用法是,搜尋字串在另一個字串中是否存在,例如【strstr("Hello world!",111);】。如果存在,函數則傳回該字串及剩餘部分。
本文操作環境:windows10系統、php 7.3、thinkpad t480電腦。
strstr() 函數搜尋字串在另一個字串中是否存在,如果是,則傳回該字串及剩餘部分,否則傳回 FALSE。
例如透過"o" 的ASCII 值搜尋字串,並傳回字串的剩餘部分
<!DOCTYPE html> <html> <body> <?php echo strstr("Hello world!",111); ?> </body> </html>
運行結果:
o world!
例如我們要回傳" world" 第一次出現之前的字串部分
<!DOCTYPE html> <html> <body> <?php echo strstr("Hello world!","world",true); ?> </body> </html>
運行結果:
Hello
相關影片教學分享:php影片教學
#以上是php中strstr函數的用法是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!