0

我对 SounCloud PHP 包装器有疑问。当我向 SounCloud API 发出 oembed 请求时。最后一个给我一个字符串数据。它由诸如标头和 JSON 数据之类的东西组成。它看起来像这样:

Age: 0
Via: 1.1 varnish
X-Cache: MISS
Vary: Accept-Encoding

{"version":1.0,"type":"rich",......."author_url":"https://soundcloud.com/forss"}

因此,当我json_decode对这些数据使用函数时,它无法解码 JSON 部分。有谁知道如何从这个内容中删除标题?

注意:我在代理后面工作,所以我在下面添加了这段代码以使 curl 请求工作

$client->setCurlOptions(array(
            CURLOPT_FOLLOWLOCATION => 1,
        CURLOPT_PROXY => "http://xxxxxxxxxx",
        CURLOPT_PROXYPORT => 8080,
        CURLOPT_PROXYUSERPWD => "xxxx:xxxx",
        CURLOPT_SSL_VERIFYPEER => 0));
4

1 回答 1

0

那很奇怪!你可以做的是:

if(strstr($response, "{") !== false){
    $response = substr($response, strstr("{"));
}
于 2013-01-16T15:37:13.250 回答