1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php @header( 'Content-Type: text/html; charset=iso-8859-1' ); @header( "Cache-Control: no-cache, must-revalidate" ); @header( "Expires: Mon, 26 Jul 1997 05:00:00 GMT" ); $video = $_POST['video']; $hash = file_get_contents( "http://youtube.com/get_video_info?video_id=$video" ); //echo "<pre>";print_r($hash);exit; parse_str( $hash, $arr ); if ( isset( $arr['thumbnail_url'] ) ) { $thumb = preg_replace( '/default.jpg/', 'mqdefault.jpg', $arr['thumbnail_url'] ); $title = $arr['title']; echo ' <div class="col-sm-12 text-center vd"> <a class="fancybox-media nopd" style="background: url(' . $thumb . ') !important;background-size: 100% 100% !important;" href="http://www.youtube.com/watch?v=' . $video . '&hd=1"><div class="overtwo2"></div> </a><p id="' . $video . '"></p> </div>'; } else{ echo 0; } ?>
|