Advertisement
DevZone

YouTube Short Link

Jul 31st, 2012
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2. $message = "Big tit's http://www.youtube.com/watch?v=v5V4lc3jaZE&feature=player_embedded&hd=1 :)"
  3.  
  4. // youtube, make short url
  5. $message = preg_replace(
  6.     '#http://(?:www\.)?youtube.com/watch\?v=([0-9A-Za-z-_~]{11})[&=0-9A-Za-z_^]*#i',
  7.     'http://youtu.be/$1',
  8.     $message
  9. );
  10.  
  11. echo $message;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement