我对 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);