$items = explode(',',$product); // values is 4,2,4,2,2,4 $unique_items=array_unique($items); // gives me 4,2
Какой код должен быть рядом, чтобы дать мне 4 = 3, 2 = 3 и сохранить количество значений переменной?
see: array_count_values
Подобно:
$occurences = array_count_values($items); print_r($occurences);
Вывод:
Array ( [4] => 3 [2] => 3 )
Применение:
echo $occurences[4]; // outputs 3
Вероятно, вы ищете функцию array_count_values ().
здесь: array_count_values () https://www.w3schools.com/php/showphp.asp?filename=demo_func_array_count_values