<?php
header("Content-type:text/html;charset=utf-8");
function str_count($str, $source)
{
$arr=explode($str,$source);
return(count($arr)-1);
}
$important_words = array('213', 'fsa', 'test', 'qwerty', 'aza');
$text = 'ok 213 test';
for($i=0;$i<count($important_words);$i++){
$count = str_count($important_words[$i], $text);
}
if($count>0){
echo '1';
}
else{
echo "2";
}
?>
Возвращает 2, как поправить? Использовать while?