substr_count 可以幫我們計算某字串在字串內出現的次數。
語法:
substr_count(string,substring,start,length)
其中 string 跟 substring 必填,分別為要搜尋的目標字串與要搜尋的內容。
而 start 為選填,用來規定從哪邊開始搜尋。charlist 也為選填,用來規定搜尋的長度。
例子:
echo substr_count("Hello world. The world is nice","world"); //輸出 2