Jump to content

Recommended Posts

Ok On my forum we use BBcodes tag's to replace so people can put in a youtube code and it replaces it all with php and makes it show youtube video.

 

here is code:

 

$txt = preg_replace( "#\[youtube\](.+?)\[/youtube\]#is", "<object width=\"425\" height=\"350\"><param name=\"movie\" value=\"http://www.youtube.com/v/\\1\"></param><param name=\"wmode\" value=\"transparent\"></param><embed src=\"http://www.youtube.com/v/\\1\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"425\" height=\"350\"></embed></object>", $txt );

 

that's preg_replace

 

 

 

this is another 1 that's preg_replace but different...

 

 

 

 

//youtube by Abe90
$txt = preg_replace( "#<object width=\"425\" height=\"350\"><param name=\"movie\" value=\"http://www.youtube.com/v/(.+?)\"></param><param name=\"wmode\" value=\"transparent\"></param><embed src=\"http://www.youtube.com/v/(.+?)\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"425\" height=\"350\"></embed></object>#is" ,"\[YOUTUBE\]\\1\[/YOUTUBE\]" , $txt );

 

Is there any way I can limit people using it 3 Times? :)

 

Like only allowing 3 Youtube's or whatever I need to make it so people can only use that preg_replace thing 3 times.

 

Link to comment
https://forums.phpfreaks.com/topic/158354-can-i-limit-strreplace/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.