Advertisement
hasib_mo

youtube Buffer via Server

Sep 16th, 2012
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?php
  2.  
  3.     $query = $_REQUEST['q'];
  4.     if(preg_match('/youtube/', $query) ) {
  5.         echo file_get_contents( urlencode( $query ) );
  6.     }else{
  7.         echo file_get_contents( 'http://www.youtube.com/watch?v=' . urlencode($query) );
  8.     }
  9.  
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement