I'm new to PHP but coming from Java & JavaScript. I have a string which I think resembles an Array?
[name] => John
[lastname] => Smith
[age] => 1.00
[amount] => 21.00
[birthday] => 6/9/2020
How would I parse this into an Array object so I can perform actions on each "key"?
parse_str() seems to fail with this, and so does explode() as it does not produce a "key-value" pair I can easily iterate over.