我正在尝试检查https连接是否是初始连接或是否重复使用:
$curlHandle = curl_init(); //first connection
$url = "https://en.wikipedia.org/wiki/Main_Page";
curl_setopt($curlHandle, CURLOPT_URL, $url);
//Reused the handle
$url = "https://en.wikipedia.org/wiki/Curl";
curl_setopt($curlHandle, CURLOPT_URL, $url);
curl_close($curlHandle);//finally closed
我如何检查这一点(不使用wireshark(?有没有 php curl 选项来查看这个?
提前谢谢。
不,
没有。cURL 句柄不会保存有关此的任何信息。它只是立即检查是否有当前使用的并轻松返回。出于性能原因,就是这样。