PHP:
$arr = [1,2,3,2,2]; $str = 1; function xxx($arr,$str){ $j = 0; for ($i=0; $i < count($arr); $i++) { if($arr[$i]==$str){ $j++; } } echo $j; } xxx($arr,$str);
PHP:
$arr = [1,2,3,2,2]; $str = 1; function xxx($arr,$str){ $j = 0; for ($i=0; $i < count($arr); $i++) { if($arr[$i]==$str){ $j++; } } echo $j; } xxx($arr,$str);