curl_multi_exec()

发布于 2024-10-30 18:57:18 字数 262 浏览 3 评论 0原文

我不明白 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天生の放荡 2024-11-06 18:57:18

每次调用它时,都会分配该变量来告诉您操作是否仍在运行:

curl_multi_exec($ch, $running);

之后,如果操作仍在运行,则 $running 为非零。如果是这样,您将不得不再次调用它(通常在循环中)。

Every time you call it, that variable is assigned to tell you whether the op is still running:

curl_multi_exec($ch, $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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文