I have a product array containing a list of products sorted by their display order.
$products = array(
[0] = array(
"productID" => 189736,
"title" => "Spice Girls Album",
"category" => "CD",
"order" => "0"
),
[1] = array(
"productID" => 23087,
"title" => "Snakes on a plane",
"category" => "DVD",
"order" => "0"
),
[2] = array(
"productID" => 9874,
"title" => "The Beatles Album",
"category" => "CD",
"order" => "1"
), ... etc etc
I’m trying to figure out the logic of turning it into a category array like this:
$categories = array(
[0] => array(
"title" => "CD",
"products" => array (
[0] => "Spice Girls Album",
[1] => "The Beatles Album"
)
),
[1] => array(
"title" => "DVD",
"products" => array (
[0] => "Snakes on a plane"
)
)
So for each product I have:
if (!in_array($product['cateogry'], $categories)){
$categories[] = $product['cateogry'];
$categories[$product['category']][] = $product;
} else {
$categories[$product['category']][];
}
But this isn’t working, because I don’t think in_array is checking deep enough into the category array. Does anyone have any advice on the best way to solve this? Many thanks
You have the right idea with
$categories[$product['category']][] = $product. What you need to be checking is if the key$product['category']exists in$categories:This will give you an array in the form: