Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- if($body = stripslashes($_POST['body'])){
- $pattern[0] = '#(http:\/\/)?(www.)?(youtube\.com\/watch\?v[=]([a-zA-Z0-9_]+))&[0-9a-zA-Z=_]*#';
- $pattern[1] = '#((?!.*com/embed.*)(http:\/\/)?(www.)?[0-9a-zA-Z]+\.[a-zA-Z]+((\/[0-9a-zA-Z]*)*(\?(&*\w+[=]\w+))*)?)#';
- $replacement[0] = '<iframe width="560" height="315" src="http://www.youtube.com/embed/$4" frameborder="0" allowfullscreen></iframe>';
- $replacement[1] = '<a href="$1" target="_blank">$1</a>';
- $body = preg_replace($pattern, $replacement, $body);
- echo $body;
- }
Advertisement
Add Comment
Please, Sign In to add comment