curl_multi_exec()
我不明白 PHP cURL 函数 curl_multi_exec()
。
int curl_multi_exec(handle h, int running)
我浏览了 PHP 手册 http://www.php.net 但不明白变量运行的作用。
在谷歌上搜索了很多,但没有找到解释。 有人可以解释一下吗?
I dont understand the PHP cURL function curl_multi_exec()
.
int curl_multi_exec(handle h, int running)
I went through the PHP manual http://www.php.net but don't understand what the variable running does.
Searched a lot on Google but didn't find the explanation.
Can somebody explain?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每次调用它时,都会分配该变量来告诉您操作是否仍在运行:
之后,如果操作仍在运行,则
$running
为非零。如果是这样,您将不得不再次调用它(通常在循环中)。Every time you call it, that variable is assigned to tell you whether the op is still running:
After that,
$running
is non-zero if the operations are still running. If so, you will have to call it again (normally in a loop).