mirror of
https://github.com/php/php-src.git
synced 2024-11-23 09:54:15 +08:00
parent
95c5a5a959
commit
fde34bc1e8
3
NEWS
3
NEWS
@ -53,6 +53,9 @@ PHP NEWS
|
||||
. Implemented asymmetric visibility for properties. (ilutov)
|
||||
|
||||
- Curl:
|
||||
. Added CURLOPT_PREREQFUNCTION Curl option to set a custom callback
|
||||
after the connection is established, but before the request is
|
||||
performed. (Ayesh Karunaratne)
|
||||
. Added CURLOPT_SERVER_RESPONSE_TIMEOUT, which was formerly known as
|
||||
CURLOPT_FTP_RESPONSE_TIMEOUT. (Ayesh Karunaratne)
|
||||
|
||||
|
@ -292,6 +292,10 @@ PHP 8.4 UPGRADE NOTES
|
||||
supported (true) or not (false).
|
||||
. Added CURL_HTTP_VERSION_3 and CURL_HTTP_VERSION_3ONLY constants (available
|
||||
since libcurl 7.66 and 7.88) as available options for CURLOPT_HTTP_VERSION.
|
||||
. Added CURLOPT_PREREQFUNCTION as a Curl option that accepts a callback to
|
||||
be called after the connection is made, but before the request is sent.
|
||||
The callback must return either CURL_PREREQFUNC_OK or CURL_PREREQFUNC_ABORT
|
||||
to allow or abort the request.
|
||||
. Added CURLOPT_SERVER_RESPONSE_TIMEOUT, which was formerly known as
|
||||
CURLOPT_FTP_RESPONSE_TIMEOUT. Both constants hold the same value.
|
||||
|
||||
@ -997,7 +1001,10 @@ PHP 8.4 UPGRADE NOTES
|
||||
- Curl:
|
||||
. CURL_HTTP_VERSION_3.
|
||||
. CURL_HTTP_VERSION_3ONLY.
|
||||
. CURL_TCP_KEEPCNT
|
||||
. CURL_TCP_KEEPCNT.
|
||||
. CURLOPT_PREREQFUNCTION.
|
||||
. CURL_PREREQFUNC_OK.
|
||||
. CURL_PREREQFUNC_ABORT.
|
||||
. CURLOPT_SERVER_RESPONSE_TIMEOUT.
|
||||
|
||||
- Intl:
|
||||
|
Loading…
Reference in New Issue
Block a user