我正在使用一个array_push
添加到一个数组中,其中有多少次卡存在。
$array = array();
foreach($aiarray as $card) {
$cardss = card($card);
array_push($array, $cardss);
}
asort($array);
print_r($array);
这给了我我需要的东西,但现在我该如何搜索数组并说;
伪
if (*array contains > 2 of the same word) {
find out what word;
does the array contain more than one?;
}