1

私の 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";
?>
4

1 に答える 1

0

ソケットを使用することをお勧めします

<?php
$fp = stream_socket_client("tcp://api.wunderground.com:80", $errno, $errstr, 30);
if (!$fp) {
    echo "$errstr ($errno)<br />\n";
} else {
    fwrite($fp, "GET /api/b2b4a1ad0a889006/geolookup/conditions/q/IA/Cedar_Rapids.json HTTP/1.0\r\nHost: api.wunderground.com\r\nAccept: */*\r\n\r\n");
    while (!feof($fp)) {
        echo json_decode(fgets($fp));
    }
    fclose($fp);
}
?>
于 2013-05-19T19:54:05.567 に答える