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.
如何发出在发出请求后空闲的 curl 请求?
我想让条件像用户访问任何网站然后闲置一段时间一样,我想在 PHP 中实现这一点。
例如,www.siteblalala.com,那么我希望 php 在该站点上使用 curl 空闲,我该如何做呢?
使用睡眠功能:
sleep(2); //wait for 2 seconds
描述:
将程序执行延迟给定的秒数。
试试睡眠功能
// sleep for 10 seconds sleep(10);