That will capture the contents in the capture group.
So your example contents should be in $matches[1] ???
ex:
<?php
$subject = "Land of gray [example]here is an example[/example] and pink.";
$pattern = '/\[example\]([^\[]*)\[/';
preg_match($pattern, $subject, $matches);
print_r($matches[1]);
?>
I didn't test the code above because I don't have PHP running on this machine but I think that would work...
0
AudioBubble
On
BB code allows attributes. [url="somelink"]click[/url] will not be parsed properly with this regex. I would like to give you an answer, but my regex does'nt work well and it's the reason I got here in the first place. Lol. ;-)
I'm not a PHP expert but... this regex will work
That will capture the contents in the capture group.
So your example contents should be in $matches[1] ???
ex:
I didn't test the code above because I don't have PHP running on this machine but I think that would work...