I have some code with the a structure similar to this
function bbcode($Text) { //$Text = preg_replace(\"/\\[video\\](.+?)\\[\\/video\\]
try preg_replace_callback
return preg_replace_callback("/\[video\](.+?)\[\/video\]/", 'embed_video', $Text); function embed_video($matches) { return $matches[1] . 'foo'; }