curl_pause

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

curl_pause暂停和取消暂停连接

说明

curl_pause(CurlHandle $handle, int $flags): int

警告

本函数还未编写文档,仅有参数列表。

参数

handle

curl_init() 返回的 cURL 句柄。

flags

CURLPAUSE_* 常量之一。

返回值

返回一个错误代码 (如果没有错误则返回 CURLE_OK 常量)。

更新日志

版本 说明
8.0.0 handle expects a CurlHandle instance now; previously, a resource was expected.
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top