How can the maximum execution time limit in PHP be adjusted using the ini_set function?

The maximum execution time limit in PHP can be adjusted using the `ini_set` function by setting the `max_execution_time` directive to the desired value in seconds. This can be useful when running scripts that require more time to complete than the default limit allows. By using `ini_set`, you can dynamically adjust the maximum execution time limit within your PHP script.

// Set the maximum execution time limit to 60 seconds
ini_set('max_execution_time', 60);