File tree 2 files changed +13
-1
lines changed
2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,11 @@ PHP NEWS
32
32
EAI_SYSTEM not found). (nielsdos)
33
33
. Implemented asymmetric visibility for properties. (ilutov)
34
34
35
+ - Curl:
36
+ . Added CURLOPT_PREREQFUNCTION Curl option to set a custom callback
37
+ after the connection is established, but before the request is
38
+ performed. (Ayesh Karunaratne)
39
+
35
40
- Date:
36
41
. Fixed bug GH-13773 (DatePeriod not taking into account microseconds for end
37
42
date). (Mark Bennewitz, Derick)
Original file line number Diff line number Diff line change @@ -292,6 +292,10 @@ PHP 8.4 UPGRADE NOTES
292
292
supported (true) or not (false).
293
293
. Added CURL_HTTP_VERSION_3 and CURL_HTTP_VERSION_3ONLY constants (available
294
294
since libcurl 7.66 and 7.88) as available options for CURLOPT_HTTP_VERSION.
295
+ . Added CURLOPT_PREREQFUNCTION as a Curl option that accepts a callback to
296
+ be called after the connection is made, but before the request is sent.
297
+ The callback must return either CURL_PREREQFUNC_OK or CURL_PREREQFUNC_ABORT
298
+ to allow or abort the request.
295
299
296
300
- Date:
297
301
. Added static methods
@@ -995,7 +999,10 @@ PHP 8.4 UPGRADE NOTES
995
999
- Curl:
996
1000
. CURL_HTTP_VERSION_3.
997
1001
. CURL_HTTP_VERSION_3ONLY.
998
- . CURL_TCP_KEEPCNT
1002
+ . CURL_TCP_KEEPCNT.
1003
+ . CURLOPT_PREREQFUNCTION.
1004
+ . CURL_PREREQFUNC_OK.
1005
+ . CURL_PREREQFUNC_ABORT.
999
1006
1000
1007
- Intl:
1001
1008
. The IntlDateFormatter class exposes now the new PATTERN constant
You can’t perform that action at this time.
0 commit comments