I have this array data:
Array
(
[0] => Array
(
[product_sequence] => 1
[quantity] => 1
[attributes] => Array
(
)
)
[1] => Array
(
[product_sequence] => 1
[quantity] => 1
[attributes] => Array
(
[Colour] => Black
)
)
)
whats the best way to search this array by the product_sequence
i tired using:
array_search('1', $_SESSION["cart"])
but this doesnt return any data at all
foreachforeachis the only wayarray_column($_SESSION["cart"], "product_sequence")for php >= 5.5