Try this:
$categories = json_decode($data)->{'Category'};
foreach($categories as $category){
echo $category-{'id'};
}
solved Decode json array
Try this:
$categories = json_decode($data)->{'Category'};
foreach($categories as $category){
echo $category-{'id'};
}
solved Decode json array