return response()->json($array);
$json_string = file_get_contents("http://api.wunderground.com/api/7ec5f6510a4656df/geolookup/forecast/q/40121.json");
$parsed_json = json_decode($json_string, true);
$parsed_json = $parsed_json['forecast']['txt_forecast']['forecastday'];
//pr($parsed_json);
foreach($parsed_json as $key => $value)
{
echo $value['period'] . '<br>';
echo $value['icon'] . '<br>';
// etc
}
<?php
$json_string = file_get_contents("http://api.wunderground.com/api/7ec5f6510a4656df/geolookup/forecast/q/40121.json");
$parsed_json = json_decode($json_string);
$temp = $parsed_json->{'forecast'}->{'txt_forecast'}->{'date'};
$title = $parsed_json->{'forecast'}->{'txt_forecast'}->{'forecastday'}->{'title'};
$for = $parsed_json->{'forecast'}->{'txt_forecast'}->{'forecastday'}->{'fcttext'};
echo "Current date is ${temp}, ${title}: ${for}
";
foreach($parsed_json['forecast']['forecastday[0]'] as $key => $value)
{
echo $value['period'];
echo $value['icon'];
// etc
}
?>
[{"id_product":"62mQYOsEcRAZg56b1Y85","Product_Image":"https://firebasestorage.googleapis.com/v0/b/adey-dc43b.appspot.com/o/product_images%2F5d1d8c4a-1a53-4d18-a7ff-30cdc6245fe3?alt=media&token=ab09e791-c0a1-455e-bd37-2b0077924b8e","Business_ID":"uWPVn10xhw8ZVV65FTmz","Product_price":"50","Product_descr":"this book is designed for people who have passion on weitung letter ","Owner_id":"dur03ULzh3UGPqlXfyR9tAfEx2d2","Product_name":"new boook "}]