私の Web ホストは、セキュリティ上の理由から file_get_contents をサポートしていませんが、cURL の使用はサポートしています。curl を使用してこの短いコードを変換すると誰か教えてもらえますか? 私は何日も運が悪いので、どんな助けも大歓迎です!
<?php
$json_string = file_get_contents("http://api.wunderground.com/api/b2b4a1ad0a889006/geolookup
/conditions/q/IA/Cedar_Rapids.json");
$parsed_json = json_decode($json_string);
$location = $parsed_json->{'location'}->{'city'};
$temp_f = $parsed_json->{'current_observation'}->{'temp_f'};
echo "Current temperature in ${location} is: ${temp_f}\n";
?>