substr_count()是一個函式,用來計運算元串在字元串中出現的次數。
基本介紹
- 中文名:substr_count
- 類型:函式
- 作用:計運算元串在字元串中出現的次數
- 參數:string、replacement等
語法
substr_count(string,substring,start,length) |
參數 | 描述 |
string | 必需。規定要檢查的字元串。 |
replacement | 必需。規定要插入的字元串。 |
start | 可選。規定在字元串中何處開始搜尋。 |
charlist | 可選。規定搜尋的長度。 |
例子
<?php echo substr_count("Hello world. The world is nice","world"); ?> |
2 |