本文實例講述了php通過strpos查找字符串出現位置的方法。分享給大家供大家參考。具體分析如下:
strpos用來查找一個字符串在另一個字符串中首次出現的位置,strpos區分大小寫,如果沒有找到則返回false,所以strpos有兩種類型的返回值,一種是整形,一種是bool型,開發過程中需要注意
<?php echo strpos("Hello world!","wo"); ?>
輸出結果:6
由於strpos有兩種類型的返回值,所以在判斷是否找到子字符串的的時候最好使用===三個等號進行嚴格類型的相等比較
<?php $haystack = "needle23423432"; $pos = strpos($haystack, "needle"); if ($pos==false) { print("Not found based (==) test\n"); } else { print("Found based (==) test\n"); } if ($pos===false) { print("Not found based (===) test\n"); } else { print("Found based (===) test\n"); } ?>
上面的代碼返回如下結果
This script will print: Not found based (==) test Found based (===) test The (===) test is correct.
希望本文所述對大家的php程序設計有所幫助。