Searched refs:curl_getinfo (Results 1 – 20 of 20) sorted by relevance
/PHP-7.4/ext/curl/tests/ |
H A D | curl_copy_handle_variation2.phpt | 11 the only way to test if a option is setten on a curl handle is using the curl_getinfo() function. 22 var_dump(curl_getinfo($ch) === curl_getinfo($ch2)); 27 var_dump(curl_getinfo($ch) === curl_getinfo($ch2)); 31 var_dump(curl_getinfo($ch) === curl_getinfo($ch2)); 35 var_dump(curl_getinfo($ch) === curl_getinfo($ch2));
|
H A D | curl_basic_024.phpt | 2 Test curl_getinfo() function with CURLINFO_* from curl >= 7.52.0 22 var_dump(CURLPROTO_HTTP === curl_getinfo($ch, CURLINFO_PROTOCOL)); 23 var_dump(0 === curl_getinfo($ch, CURLINFO_PROXY_SSL_VERIFYRESULT)); 24 var_dump(curl_getinfo($ch, CURLINFO_SCHEME));
|
H A D | curl_basic_023.phpt | 2 Test curl_getinfo() function with CURLINFO_HTTP_VERSION parameter 16 var_dump(0 === curl_getinfo($ch, CURLINFO_HTTP_VERSION)); 24 var_dump(CURL_HTTP_VERSION_1_1 === curl_getinfo($ch, CURLINFO_HTTP_VERSION));
|
H A D | bug46739.phpt | 2 Bug #46739 (array returned by curl_getinfo should contain content_type key) 15 $info = curl_getinfo($ch);
|
H A D | curl_basic_020.phpt | 2 Test curl_getinfo() function with CURLINFO_HTTP_CODE parameter 16 var_dump(curl_getinfo($ch, CURLINFO_HTTP_CODE));
|
H A D | bug54995.phpt | 19 var_dump(curl_getinfo($ch, CURLINFO_HTTP_CODE) == curl_getinfo($ch, CURLINFO_RESPONSE_CODE));
|
H A D | curl_basic_021.phpt | 2 Test curl_getinfo() function with CURLINFO_CONTENT_TYPE parameter 16 var_dump(curl_getinfo($ch, CURLINFO_CONTENT_TYPE));
|
H A D | curl_basic_019.phpt | 2 Test curl_getinfo() function with CURLINFO_EFFECTIVE_URL parameter 17 $info = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
|
H A D | curl_copy_handle_basic.phpt | 24 var_dump(curl_getinfo($ch) === curl_getinfo($ch2));
|
H A D | curl_copy_handle_basic_009.phpt | 17 var_dump(strstr(curl_getinfo($ch, CURLINFO_HEADER_OUT), "\r", true)); 20 var_dump(strstr(curl_getinfo($ch2, CURLINFO_HEADER_OUT), "\r", true));
|
H A D | curl_basic_022.phpt | 2 Test curl_getinfo() function with CURLINFO_COOKIELIST parameter 16 var_dump(curl_getinfo($ch, CURLINFO_COOKIELIST));
|
H A D | curl_copy_handle_variation1.phpt | 26 var_dump(curl_getinfo($ch) === curl_getinfo($ch2));
|
H A D | curl_basic_016.phpt | 2 Test curl_getinfo() function with basic functionality 16 $info = curl_getinfo($ch);
|
H A D | bug52202.phpt | 16 var_dump(curl_getinfo($curl, CURLINFO_PRIVATE));
|
H A D | curl_basic_015.phpt | 11 var_dump($url == curl_getinfo($ch, CURLINFO_EFFECTIVE_URL));
|
H A D | bug79033.phpt | 18 var_dump(curl_getinfo($ch)["request_header"]);
|
H A D | bug64267.phpt | 30 var_dump(curl_getinfo($c, CURLINFO_RESPONSE_CODE));
|
/PHP-7.4/ext/curl/ |
H A D | php_curl.h | 82 PHP_FUNCTION(curl_getinfo);
|
H A D | interface.c | 396 PHP_FE(curl_getinfo, arginfo_curl_getinfo) 3281 PHP_FUNCTION(curl_getinfo) in PHP_FUNCTION() argument
|
/PHP-7.4/ |
H A D | NEWS | 2379 . Fixed bug #77264 (curl_getinfo returning microseconds, not seconds).
|
Completed in 30 milliseconds