[Solved] Php group repeated array values
One option to your expected output is to create a indexed array with the associative array below it. This will create this kind of array: array(4) { [0]=> array(1) { [203]=> int(1) } [1]=> array(1) { [204]=> int(2) } [2]=> array(1) { [203]=> int(2) } [3]=> array(1) { [205]=> int(1) } } This is not … Read more