Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想测试当 Web 服务器没有及时响应时我的客户端是否超时。我想我可以通过制作一个永远不会完成响应的 PHP 页面来做到这一点,但我不希望它占用所有服务器的资源。即这不是一个选项:
<?php while (true);?>
建议?
你可以试试:
<?php set_time_limit(0); /* No time limit */ sleep (1000); ?>
尝试这个
<?php while (true){ sleep (10000); } ?>
<?php while (true) sleep (10); ?>
只要服务器设置了超时,这将起作用。