Difference among sleep() and usleep() in PHP

前端 未结 5 1492
执笔经年
执笔经年 2021-01-07 17:35

Can any body explain me what is the difference among sleep() and usleep() in PHP.

I have directed to use following scripts to do chat appli

5条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-07 18:09

    sleep() allows your code to sleep in seconds.

    • sleep(5); // sleeps for 5 seconds

    usleep() allows your code with respect to microseconds.

    • usleep(2500000); // sleeps for 2.5 seconds

提交回复
热议问题