INI files are simple configuration files with sections in [brackets] and key=value pairs. They're used by many applications, including PHP (php.ini), Git (.gitconfig), and Windows settings.
What's the INI syntax?
INI files use [section] headers and key = value pairs. Comments start with ; or #. Nested sections are not standard but some parsers support them.
How is INI different from TOML?
TOML is a more modern format inspired by INI with stronger typing and support for arrays, dates, and nested tables. Compare with our TOML Validator.
Does this INI parser send my configuration to a server?
No. INI files are parsed client-side in your browser, so any credentials, connection strings, or settings inside them stay on your machine. There are no uploads and no logging, which makes it safe for sensitive application or service configuration files.