joshghent / query-stringifier

:question: A small library for build query strings
https://joshghent.github.io/query-stringifier/
MIT License
2 stars 2 forks source link

Parse bracket expressions #3

Closed joshghent closed 6 years ago

joshghent commented 6 years ago

I found when doing some PHP development that arrays of data need to be parsed in a certain way Add support for the following cases (with tests)

arr[]=1&arr[]=2&arr[]=3 arr[0]=1&arr[1]=2&arr[3]=3

PhilippeChab commented 6 years ago

I will also do this.