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.
我知道如何检查类是否存在和功能,但不知道是否存在选项
选项:CURLOPT_CONNECTTIMEOUT_MS
CURLOPT_CONNECTTIMEOUT_MS
在文档中它说:
在 cURL 7.16.2 中添加。自 PHP 5.2.3 起可用。
因此,在使用它之前进行检查是有动机的。
它是一个常量,所以只需检查它是否已定义:
if(defined('CURLOPT_CONNECTTIMEOUT_MS')) { }
但是,即使它定义了,也不意味着它会起作用。看到curl 超时小于 1000ms 总是失败?更多细节。