PHP 주요레퍼런스/문자열 처리 함수

substr_count

웹 개발자의 비상 2011. 8. 2. 22:06
string substr_count(string haystack, string needle)
대상문자열에서 지정한 문자열이 몇 번 나타나는지 그 횟수를 반환한다.

hystack에서 needle을 찾아 반복된 개수를 반환한다. 찾지 못했을 경우 0을 반환한다.

예제

<?
$msg = "What a wonderful world!";
echo substr_count($msg, "wo"); //2
echo substr_count($msg, "zx"); //0
?>

728x90

'PHP 주요레퍼런스 > 문자열 처리 함수' 카테고리의 다른 글

htmlspecialchars  (0) 2011.08.02
crypt  (0) 2011.08.02
str_pad  (0) 2011.08.02
str_repeat  (0) 2011.08.02
strip_tags  (0) 2011.08.02