as am trying to stdClass Object array to normal array...product id and category separated by commas... how do i convert std class object to normal array...
Array (
[0] => stdClass Object (
[product_id] => SHIRT61
[product_category] => 4
)
[1] => stdClass Object (
[product_id] => SHIRT51
[product_category] => 5
)
)
to product_id = {'SHIRT61','SHIRT51'} and product_category = {'5','7'}