How I can get all matched objects in a group using preg_match (or preg_match_all, maybe)?
For instance, I have ^(?:,?\s*(?<key>[a-z]))+$, if I apply to a, b, c, I get this:
object array
0 : string "a, b, c"
key: string "c"
1 : string "c"
I need basically of get a, b and c. Something like it (don't needly like it):
object array
0 : string "a, b, c"
key: object array
0 : string "a"
1 : string "b"
2 : string "c"
...
It's possible? What is the better solution? I need really to split it after match?