I am getting data from database in following format,I just want to get data,How many restaurant name (count) in which country,How can i do this ? How can i change following array/object in php ?
stdClass Object
(
[_id] => 5ce405ced246f713b6256f3a
[location] => stdClass Object
(
[country] => Kuwait
)
[employerDetails] => Array
(
[0] => stdClass Object
(
[restraunt_name] => test1
)
)
[_id] => 5ce405ced246f713b6277373
[location] => stdClass Object
(
[country] => Kuwait
)
[employerDetails] => Array
(
[0] => stdClass Object
(
[restraunt_name] => test2
)
)
....
)