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.
1)有什么方法可以检查是否设置了 curl 句柄的 CURLOPT 字段,如果设置了,那么它的值是多少? 原因 - 我正在编写一个应该识别是否设置了 CURLOPT_POST 的类。如果没有,那么专用方法将添加到 GET 语法中的 url 查询以执行 GET 请求。 2)第二个原因是读取curl_exec执行有问题并返回错误的句柄的所有CURL参数字段以进行调试 3)确认成功更改句柄的CURLOPT字段,假设可以更改之前设置的字段(是吗?)
对于1),这个答案应该可以帮助你
对于 2) 你最好使用curl_error来获取 cURL 错误
对于 3),curl_setopt将覆盖先前定义的选项。它返回true成功,false否则返回。
true
false