I have two questions concerning the sleep() function in PHP:
Does the sleep time affect the maximum execution time limit of my PHP scripts? Sometimes, PHP shows the message "maximum execution time of 30 seconds exceeded". Will this message appear if I use
sleep(31)?Are there any risks when using the
sleep()function? Does it cost a lot of CPU performance?