Are there specific PHP settings that should be avoided when trying to override configurations with a local php.ini file?

When trying to override configurations with a local php.ini file, it's important to avoid settings that are already defined as PHP_INI_SYSTEM, as these cannot be overridden at runtime. Instead, focus on settings that are PHP_INI_PERDIR or PHP_INI_USER, which can be modified at runtime using a local php.ini file.

// Example of overriding a configuration with a local php.ini file
// In your local php.ini file, add the following line:
// max_execution_time = 60