This is my json
{
"product": [
{
"styles": [
{
"price": "$65.00"
},
{
"price": "$65.00"
}
],
"productId": "444",
}
],
"statusCode": "200"
}
I am trying to get the all the price.. I tried the below code but couldn't get the results
$obj = json_decode($response);
foreach($obj['product']['styles'] as $chunk) {
echo $chunk['price'];
}