Home  >  Article  >  Backend Development  >  可否控制每次循环的时间

可否控制每次循环的时间

WBOY
WBOYOriginal
2016-06-13 12:07:201011browse

能否控制每次循环的时间
有些网站的API有提交查询次数的限制,比如:每分钟一次,一次最多100个数据。

如果我需要查1000个数据,那就要10分钟,循环的话,请问怎么控制这个时间呢???
------解决思路----------------------
循環體內加個sleep(秒數);實現。
例如:
for($i=0; $i   // do sth
   sleep(60);
}

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn