当我在浏览器中使用以下URL时,它会提示我下载带有JSOn内容的文本文件。
https://chart.googleapis.com/chart?cht=p3&chs=250x100&chd=t:60,40&chl=Hello|World&chof=json
(点击以上网址查看下载的文件内容)
现在我要创建一个php页面。我希望当我调用这个php页面时,它应该调用上面的URL并从文件中获取内容(json格式)并在屏幕上显示。
我该怎么做?
答案 0 :(得分:67)
根据您的PHP配置,此可能使用起来很简单:
$jsonData = json_decode(file_get_contents('https://chart.googleapis.com/chart?cht=p3&chs=250x100&chd=t:60,40&chl=Hello|World&chof=json'));
但是,如果您的系统未启用allow_url_fopen
,则可以通过CURL读取数据,如下所示:
<?php
$curlSession = curl_init();
curl_setopt($curlSession, CURLOPT_URL, 'https://chart.googleapis.com/chart?cht=p3&chs=250x100&chd=t:60,40&chl=Hello|World&chof=json');
curl_setopt($curlSession, CURLOPT_BINARYTRANSFER, true);
curl_setopt($curlSession, CURLOPT_RETURNTRANSFER, true);
$jsonData = json_decode(curl_exec($curlSession));
curl_close($curlSession);
?>
顺便说一句,如果您只想要原始JSON数据,那么只需删除json_decode
。
答案 1 :(得分:18)
1)本地最简单的方法
<?php
echo readfile("http://example.com/"); //needs "Allow_url_include" enabled
//OR
echo include("http://example.com/"); //needs "Allow_url_include" enabled
//OR
echo file_get_contents("http://example.com/");
//OR
echo stream_get_contents(fopen('http://example.com/', "rb")); //you may use "r" instead of "rb" //needs "Allow_url_fopen" enabled
?>
2)更好的方式是CURL :
echo get_remote_data('http://example.com'); // GET request
echo get_remote_data('http://example.com', "var2=something&var3=blabla" ); // POST request
它会自动处理关注问题+远程网址:
src="./imageblabla.png"
变成:
src="http://example.com/path/imageblabla.png"
代码:https://github.com/tazotodua/useful-php-scripts/blob/master/get-remote-url-content-data.php
答案 2 :(得分:3)
不要忘记:要获取HTTPS内容,应在php.ini中启用OPENSSL扩展。 (how to get contents of site use HTTPS)
答案 3 :(得分:2)
将file_get_contents
与json_decode
和echo
结合使用。
答案 4 :(得分:2)
$url = "https://chart.googleapis....";
$json = file_get_contents($url);
现在你可以回显$ json变量,如果你只想显示输出,或者你可以解码它,并用它做一些事情,如下所示:
$data = json_decode($json);
var_dump($data);