由于某种原因,我无法从返回的jsonp字符串中获取信息,
<?php
// Created by Talisman 01/2010 ★✩
$vorto = $_GET['vorto']; // Get the Word from Outer Space and Search for it!
if (isset($vorto))
{
echo $vorto;
} else {
$Help = "No Vorto -> add ?vorto=TheWordYouWant to the end of this website";
echo $Help;
}
// Now Lets Search Alex's Vortaro, It uses jsonp
// ex. http://vortaro.us.to/ajax/epo/eng/petas/?callback=?
// Future Feature inproved language functinality
$AVurl1 = "http://vortaro.us.to/ajax/epo/eng/";
$AVurl2 = "/?callback=";
$AVfinalurl= $AVurl1 . $vorto . $AVurl2;
echo $AVfinalurl . ' </br> '; // DEBUG CODE
$AVcontent = file_get_contents($AVfinalurl) ;
echo $AVcontent . ' </br> '; // DEBUG CODE
//★✩为什么下一行不起作用?
$AVDecode = json_decode($AVcontent);
// /*
if(isset( $AVcontent)) { // DEBUG CODE
echo "json_decode set AVcontent" . ' </br> ';
} else {
echo "something fishy here" . ' </br> ';
}
if (empty($AVcontent)){
echo "EMPTY EMPTY" . ' </br> ';
} else {
echo "Not Empty". ' </br> ';
}
echo $AVDecode . ' </br> ';
// */
// Why can't I echo or access information with $AVDecode? Is it something with
// jsonp?
?>
这是我的结果
komputilojhttp://vortaro.us.to/ajax/epo/eng/komputiloj/回调=
({“text”:“komputilo:computer”})
json_decode设置AVcontent
不是空的
我应该看到echo $ AVDecode
答案 0 :(得分:6)
调试建议:
检查json_last_error()的输出。它应该给你一个确切的原因,它为什么它不起作用。但是,仅适用于PHP 5.3.0。
原因:
JSONP与JSON不同。它包含打破json_decode()的额外数据。
<强>解决方案:强>
使用substr($AVDecode, 1, strlen($AVDecode)-2)
答案 1 :(得分:0)
你无法回显对象或数组。 请告诉我们这行打印出来的内容:
print_r(json_decode($AVcontent));
将其放在$AVDecode = json_decode($AVcontent);
答案 2 :(得分:0)
您的示例网址返回
?({"text":"<b>peti</b>: ask, ask for, beg, bid, request"})
JSONP无效JSON,它会将其包装到您提供的回调中,如
callbackname(JSONIsInHere)
因此,您需要从第一次出现(到最后一次出现)子串$ $ AVcontent,这样您将获得有效JSON的回调参数,并且可以使用json_decode进行编码。