PHP Redirect Pause

前端 未结 8 1234
北荒
北荒 2020-12-28 19:08

How do I pause a page for a certain amount of seconds before redirecting the user to another HTML/PHP page using PHP?

8条回答
  •  北海茫月
    2020-12-28 19:58

    never use sleep this way. Even under slight load your server will run out of http connections. Worst if your firewall runs out.

    The delay parameter in the redirect header is made for exactly to the same reason.

提交回复
热议问题