2010年8月1日 星期日

[PHP] substr_count 計算某一長字串中, 短字串的出現次數

substr_count  Count the number of substring occurrences
PHP Manual - substr_count



Description

int substr_count ( string $haystack , string $needle [, int $offset = 0 [, int $length ]] )


Example:

<?php
echo substr_count("不看就不看不看就不看不看就不看(有幾個不看?)", "不看");
?>
 
 
 


Result:

7
Related Posts Plugin for WordPress, Blogger...