Search code examples
phpfunctiondelay

Delay Function PHP


please tell me how to make a delay function to delay functions!

DelayCommand(functionToDelay, Delaytime);

..? in php 5.3+

thanks for any help


Solution

  • function delayCommand($callback, $delayTime) {
        sleep($delayTime);
        $callback();
    }