我正在使用 tweets_json.php (使用 tmhOAuth.php )。 我填写了Twitter API中的密钥并上传了cacert.pem
我写了以下代码
<?php
$_tweet = array();
$_i = 0;
$_mycurl = curl_init();
curl_setopt ($_mycurl, CURLOPT_HEADER, 0);
curl_setopt ($_mycurl, CURLOPT_RETURNTRANSFER, 1);
$_url = "http://www.joycot.com/test/plugins/tweet/tweets_json.php?screen_name=USERNAME";
curl_setopt ($_mycurl, CURLOPT_URL, $_url);
$_web_response = curl_exec($_mycurl);
$_array = json_decode($_web_response, true);
if ($_web_response) {
foreach($_array as $_value) {
$_tweet[$_i] = $_value->text;
$_i++;
}
}
$_data['tweets'] = $_tweet;
echo json_encode($_data);
?>
显示正确数量的推文,但我找不到显示JSON数据的方法。
{ “鸣叫”:[ NULL,NULL,NULL ...]}
我做错了什么?几天前我开始学习json。
答案 0 :(得分:0)
你几乎是对的。您只需要替换该行:
$_array = json_decode($_web_response, true);
由:
$_array = json_decode($_web_response);
因为如果第二个参数为true,结果将以不同类型的数组给出:http://php.net/manual/en/function.json-decode.php