Advertisement
Guest User

Untitled

a guest
Aug 16th, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <?
  2. $content = '<a href="https://www.youtu.be/llGF8G0BpfA.youtube" target="blank" rel="nofollow">PUT ANYTHING HERE</a>';
  3. $search = '/\<a(.+)href="https:\/\/(.+)((?:youtu\.be\/|youtube\.com(?:\/embed\/|\/v\/|\/watch(.+)v=))([\w\-]{10,12})).youtube\"(.+)<\/a>/i';
  4. $replace = '<iframe width="250" height="150" src="http://www.youtube-nocookie.com/embed/$5"></iframe>';
  5. $content = preg_replace($search, $replace, $content);
  6. print $content;
  7. ?>
  8. <!--
  9. https://www.youtube.com/v/llGF8G0BpfA.youtube
  10. https://www.youtube.com/embed/llGF8G0BpfA.youtube
  11. https://www.youtube.com/watch?v=llGF8G0BpfA.youtube
  12. https://www.youtu.be/llGF8G0BpfA.youtube
  13. -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement