I want to convert the following string to an array
[map]id=map,size=512x512,markers=[[latitude=40.5,longitude=-73.9],[latitude=41.5,longitude=-72.9]][/map]
I want to use the commas as delimiters but only if they do not fall somewhere between the [ and ] characters.
So, the above string would be converted to something like:
- [0] => id=map,
- [1] => size=512x512,
- [2] => markers=[[latitude=40.5,longitude=-73.9],[latitude=41.5,longitude=-72.9]]
What would be the easiest way to achieve this?
I've looked at using the function str_getcsv but this only seems to work if the entire section is within the passed enclosure.
Any advice appreciated.
Thanks.