fork(4) download
  1. <?php
  2. $json = '{"response":{"count":1,"items":[{"id":165983743,"owner_id":170785079,"title":"Ke$ha - Blow","duration":253,"description":"","date":1379017507,"views":1,"comments":0,"photo_130":"http:\/\/cs518121.vk.me\/u170785079\/video\/s_5e5f6f2c.jpg","photo_320":"http:\/\/cs518121.vk.me\/u170785079\/video\/l_dd4ec237.jpg","files":{"mp4_240":"http:\/\/cs518121v4.vk.me\/u170785079\/videos\/500770e51c.240.mp4","mp4_360":"http:\/\/cs518121v4.vk.me\/u170785079\/videos\/500770e51c.360.mp4","mp4_480":"http:\/\/cs1-46v4.vk.me\/p13\/483502b20c4f.480.mp4","mp4_720":"http:\/\/cs518121v4.vk.me\/u170785079\/videos\/500770e51c.720.mp4"},"player":"http:\/\/vk.com\/video_ext.php?oid=170785079&id=165983743&hash=1e417a266e9a3f00"}]}}';
  3.  
  4. $obj = json_decode($json);
  5. print_r ($obj);
  6.  
  7. print $obj->response->items[0]->files->mp4_240;
  8.  
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
stdClass Object
(
    [response] => stdClass Object
        (
            [count] => 1
            [items] => Array
                (
                    [0] => stdClass Object
                        (
                            [id] => 165983743
                            [owner_id] => 170785079
                            [title] => Ke$ha - Blow
                            [duration] => 253
                            [description] => 
                            [date] => 1379017507
                            [views] => 1
                            [comments] => 0
                            [photo_130] => http://c...content-available-to-author-only...k.me/u170785079/video/s_5e5f6f2c.jpg
                            [photo_320] => http://c...content-available-to-author-only...k.me/u170785079/video/l_dd4ec237.jpg
                            [files] => stdClass Object
                                (
                                    [mp4_240] => http://c...content-available-to-author-only...k.me/u170785079/videos/500770e51c.240.mp4
                                    [mp4_360] => http://c...content-available-to-author-only...k.me/u170785079/videos/500770e51c.360.mp4
                                    [mp4_480] => http://c...content-available-to-author-only...k.me/p13/483502b20c4f.480.mp4
                                    [mp4_720] => http://c...content-available-to-author-only...k.me/u170785079/videos/500770e51c.720.mp4
                                )

                            [player] => http://content-available-to-author-only.com/video_ext.php?oid=170785079&id=165983743&hash=1e417a266e9a3f00
                        )

                )

        )

)
http://c...content-available-to-author-only...k.me/u170785079/videos/500770e51c.240.mp4