0

私はいくつかのattiributue値を取得しようとします。しかし、チャンスはありません。以下に私のコードと説明を見ることができます。期間、ファイルなどの値を取得する方法は?

$url="http://www.some-url.ltd";

    $dom = new DOMDocument;
    @$dom->loadHTMLFile($url);
    $xpath = new DOMXPath($dom);
    $the_div = $xpath->query('//div[@id="the_id"]');
    foreach ($the_div as $rval) {
        $the_value = trim($rval->getAttribute('title'));
        echo $the_value;
    }

以下の出力:

{title:'title',
                description:'description',
                scale:'fit',keywords:'',
                file:'http://xxx.ccc.net/ht/2012/05/10/419EE45F98CD63F88F52CE6260B9E85E_c.mp4',
                type:'flv',
                duration:'24',
                screenshot:'http://xxx.ccc.net/video/2012/05/10/419EE45F98CD63F88F52CE6260B9E85E.jpg?v=1336662169',
                suggestion_path:'/videoxml/player_xml/61319',
                showSuggestions:true,
                autoStart:true,
                width:412,
                height:340,
                autoscreenshot:true,
                showEmbedCode:true,
                category: 1,
                showLogo:true
                                                }

期間、ファイルなどの値を取得する方法は?

4

1 に答える 1

2

どうですか

$parsed = json_decode($the_value, true);
$duration = $parsed['duration'];

編集:json_decode()には適切なJSONフォーマットが必要なため(キー名と値は二重引用符で囲む必要があります)、元のフォーマットを正しいフォーマットに修正する必要があります。だからここにコードがあります:

function my_json_decode($s, $associative = false) {
$s = str_replace(array('"', "'", 'http://'), array('\"', '"', 'http//'), $s);
        $s = preg_replace('/(\w+):/i', '"\1":', $s);
        $s = str_replace('http//', 'http://', $s);
        return json_decode($s, $associative);
}

$parsed = my_json_decode($var, true);

関数my_json_decodeはこの回答から取得され、わずかに変更されています。

于 2012-05-10T20:14:01.350 に答える