Below is an example of the original INI to JSON and the result.
Original INI to JSON Example; comments [owner] name=yttags organization=pakainfo.com [database] ; comments name= yttags server=192.0.2.62 server.host=localhost server.port=143 server.port.listen = true file=yttags.dat
And an example of how the online INI to JSON works.
INI to JSON Result{ "owner": { "name": "yttags", "organization": "pakainfo.com" }, "database": { "name": "yttags", "server": { "0": "192.0.2.62", "host": "localhost", "port": { "0": "143", "listen": "true" } }, "file": "yttags.dat" } }