I want to use preg_match to return an array of every match for parenthesized subpattern.
I have this code:
$input = '[one][two][three]';
if ( preg_match('/(\[[a-z0-9]+\])+/i', $input, $matches) )
{
print_r($matches);
}
This prints:
Array ( [0] => [one][two][three], [1] => [three] )
... only returning the full string and the last match. I would like it to return:
Array ( [0] => [one][two][three], [1] => [one], [2] => [two], [3] => [three] )
Can this be done with preg_match?