psecio/iniscan

config-file-scan-dir ini files missed, which may contain additional config

andytson opened this issue · 2 comments

Since PHP includes additional ini files at runtime using --with-config-file-scan-dir, some configuration might be missed.

This kind of thing can be detected in the PHP instance for the currently loaded ini settings using php_ini_scanned_files().

They usually contain extension config, but could additionally set base PHP ini settings.

I think this fix should take care of the settings included in those other files: 861e3d1

The implemented fix seems to take care of this issue - closing.