0

embed.lyからのJSON応答があり、PHPスクリプトで次のように取得します。

// jSON URL which should be requested
    $json_url = 'http://api.embed.ly/1/oembed?key=hidden&url='.$_POST['url'];

    // Initializing curl
    $ch = curl_init( $json_url );

    // Configuring curl options
    $options = array(
        CURLOPT_RETURNTRANSFER => true,
        CURLOPT_HTTPHEADER => array('Content-type: application/json') ,
    );

    // Setting curl options
    curl_setopt_array( $ch, $options );

    // Getting results
    $result =  curl_exec($ch); // Getting jSON result string

私の問題は、レスポンシブレイアウトにembed.lyからの応答を埋め込みたいのですが、embed.ly-ビデオの応答にはwith&height属性が含まれていることです。

{"provider_url": "http://www.youtube.com/", "description": "Markus Eisenrings Stromboli electric car on swiss television broadcast. See www.stromboli.ch for more information.", "title": "Stromboli Electric Car", "url": "http://www.youtube.com/watch?v=TJCZnpHuFS8", "author_name": "hangflug", "height": 360, "thumbnail_width": 480, "width": 640, "html": "<iframe width=\"640\" height=\"360\" src=\"http://www.youtube.com/embed/TJCZnpHuFS8?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>", "author_url": "http://www.youtube.com/user/hangflug", "version": "1.0", "provider_name": "YouTube", "thumbnail_url": "http://i1.ytimg.com/vi/TJCZnpHuFS8/hqdefault.jpg", "type": "video", "thumbnail_height": 360}

次のように、そのJSON文字列からすべての幅と高さの属性を削除してみました。

$result = json_encode(preg_replace('/\<(.*?)(width="(.*?)")(.*?)(height="(.*?)")(.*?)\>/i', '<$1$4$7>', json_decode($result)));

しかし、これは私にPHPエラーを与えています。

Catchable fatal error:  Object of class stdClass could not be converted to string in /Applications/XAMPP/xamppfiles/htdocs/projectname/ajax.php on line 22

何か案は?

4

2 に答える 2

0

あなたはこれをすることはできません:

$arr = json_decode($result, true); 
unset($arr["height"], $arr["width"]);
$result = json_encode($arr);

更新:あなたの特定の例のために:

$arr = json_decode($result, true);
unset($arr["height"], $arr["width"]);
$arr_temp = explode(' ', $arr["html"]);
foreach ($arr_temp as $i => $val) {
    if ((substr($val, 0, 7) != "height=") && (substr($val, 0, 6) != "width="))
        $arr_html[] = $val;
}
$arr["html"] = implode(' ', $arr_html);
$json_result = json_encode($arr);

PHPサンドボックス

于 2013-02-16T19:09:37.347 に答える
0

ついに、次のようなヘルプフォームで動作するようになりました。

$arr = json_decode($result, true);
foreach ($arr as $key => & $val) {
    if($key=='html'){
        $html = preg_replace('/\<(.*?)(width="(.*?)")(.*?)(height="(.*?)")(.*?)\>/i','<$1$4$7>', $arr['html']);
        $arr[$key] = $html;
    }

}
$result = json_encode($arr);
于 2013-02-17T07:34:40.583 に答える