What is the correct usage of the ini_set function in PHP?

The ini_set function in PHP is used to dynamically change the configuration settings of PHP during runtime. This can be useful for overriding default settings or changing specific configurations for a particular script or application. To use the ini_set function, you need to provide the name of the configuration setting you want to change along with the new value you want to set it to.

// Example of using ini_set to change the maximum execution time setting
ini_set('max_execution_time', 60); // Set the maximum execution time to 60 seconds