Jump to content

Can I LIMIT STR/REPLACE..?


Monkuar

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.