A number of pages we’ve developed so far include arbitrary values, such as the dimensions of the images. Because they’re not part of the logic, we put them in an array called $CONFIG near the top of the code, promising to do something with them later. Now, this is later.
Many packages use a special file format for configuration options. This includes PHP’s default settings, php.ini, and the site’s .user.ini file. This format is known as an ini file.
We’re going to develop our own ini file with our site configuration ...