当前位置:  开发笔记 > 编程语言 > 正文

使用php获取json

如何解决《使用php获取json》经验,为你挑选了2个好方法。

我需要从http://vortaro.us.to/ajax/epo/eng/ +'word'+"/?callback =?" 获取json数据 .工作实例(声誉不够)

我知道如何在javascript中做到这一点,但我需要我的php文件来获取这些数据,它需要是服务器端,谢谢我是新的我花了一整天时间试图解决这个问题.fopen和fread不工作,

 add ?vorto=TheWordYouWant to the end of this website";
        echo $Help;
    }
$url1 = "http://vortaro.us.to/ajax/epo/eng/"; 
$url2 = "/?callback=?";
$finalurl= $url1 . $vorto . $url2;

/*
PLEASE HELP

$v1 = fopen($finalurl ,"r");
echo $v1;


$frv1 = fread($v1,filesize($v1));
echo $frv1 ;

*/

?>

Berzemus.. 60

file_get_contents()可用于URL.一种处理http页面下载的简单方便的方法.

完成后,您可以使用json_decode()将数据解析为有用的东西.



1> Berzemus..:

file_get_contents()可用于URL.一种处理http页面下载的简单方便的方法.

完成后,您可以使用json_decode()将数据解析为有用的东西.


`$ data = json_decode(file_get_contents('http://sample.com/stuff.json'));`
使用curl要快得多,打印效果会更好.您可以设置超时缓存等.我永远不会将file_get_contents用于api-request //来源 - > Google:curl vs file_get_contents

2> DrDol..:

看看PHP Curl.

通过这个例子,您可以获得所有信息.


确保在php.ini中启用PHP Curl.如果你想使用fopen设置,你的php.ini中的allow_url_fopen必须为'ON'.检查所有设置的phpinfo().

从PHP 5.2.0开始,函数json_decode是核心的一部分.

推荐阅读
360691894_8a5c48
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有