What is the recommended method in PHP to delay script execution for a specified amount of time?

In PHP, the recommended method to delay script execution for a specified amount of time is to use the `sleep()` function. This function takes one argument, which is the number of seconds to pause the script execution.

// Delay script execution for 5 seconds
sleep(5);