こんにちは、次のような連想配列で重複する値の数を数えようとしています。
array(3) { [0]=> array(3) { ["Title"]=> string(25) "hello"
["Price"]=> int(50)
["Count"]=> int(1) }
[1]=> array(3) { ["Title"]=> string(35) "world"
["Price"]=> int(50)
["Count"]=> int(1) }
[2]=> array(3) { ["Title"]=> string(25) "hello"
["Price"]=> int(50)
["Count"]=> int(1) } }
ここでわかるように、「タイトル」ラベルに重複した値があり、それらをカウントして「カウント」部分に1つ追加します。私はこのようなことを始めました:
$prodArray = array();
// Add the values to the array if it's the first time it occurs.
if (!in_array($row['prodTitle'], $prodArray["Title"]))
{
array_push($prodArray,
array( Title => $row['prodTitle'],
Price => $row['prodPrice'],
Count => 1)
);
}
else
{
//Add one to the count for the current item.
}
問題は、in_array 関数を介して配列内の「タイトル」要素にアクセスできないことです。どんな提案でも大歓迎です。