0

我对 PHP 非常陌生,需要使用 HTTP 请求来下载服务器外部的 URL。该 URL 是一个 PHP 函数,它返回我已解码的 JSON 代码。有什么建议么?

我尝试了基本代码:

    <?php   
    //Code for forming the url (which I'm sure is correct)
    $url = ...
    $response = fopen($url,"x+");
    $response = json_decode($response);
    echo $response;
    ?>
    //javascript in a seperate file that calls the php code
    var response = xmlhttp.responseText;
alert(response);
4

5 回答 5

1

尝试这个:

<?php
$url = 'YOUR_URL_HERE';

$data = file_get_contents( $url ); // it is a JSON response as per your statement.

$data= json_decode($data);
print_r($data); // now, it's a normal array.
?>
于 2012-09-03T07:11:00.417 回答
0

如果配置允许,您可以使用fopencURL 或fsockopen函数来执行此操作

于 2012-09-03T07:09:26.913 回答
0

你可以使用:

$json_str = file_get_contents($url);
$json = json_decode($json_str, true);
于 2012-09-03T07:10:21.030 回答
0

你不能使用 file_get_contents 吗?例如

<?php

$url = "YOUR_URL";
$json = file_get_contents($url);

// handle the data
$data = json_decode($json, TRUE);

    var_dump($data); // example
?>
于 2012-09-03T07:10:43.037 回答
0

如果你有很多请求,你可以尝试使用像 Buzz 这样的 http 类,这将有助于清理你的代码https://github.com/kriswallsmith/Buzz

于 2012-09-03T07:13:14.633 回答