Advertisement
Guest User

Untitled

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