在PHP“gdata.io.handleScriptLoaded”中解析JSON字符串

时间:2012-12-18 13:03:22

标签: php json

我从YouTube获取JSON格式的数据 但它将JSON返回为gdata.io.handleScriptLoaded({key:value});

我如何访问php中的key,因为响应不是JSON对象

2 个答案:

答案 0 :(得分:10)

我找到了自己的答案。

我将值传递给请求网址script-in-json。 simplay将其更改为json

答案 1 :(得分:1)

$json = gdata.io.handleScriptLoaded({key:value});
    $res = json_decode($json);
    print $res->{'key'}; // it prints your value