@@ -165,6 +165,11 @@ PHP 8.4 UPGRADE NOTES
165
165
requests in non-POST HTTP requests.
166
166
RFC: https://wiki.php.net/rfc/rfc1867-non-post
167
167
168
+ - Curl:
169
+ . curl_version() returns an additional feature_list value, which is an
170
+ associative array of all known Curl features, and whether they are
171
+ supported (true) or not (false).
172
+
168
173
- Date:
169
174
. Added static methods
170
175
DateTime[Immutable]::createFromTimestamp(int|float $timestamp): static.
@@ -193,6 +198,10 @@ PHP 8.4 UPGRADE NOTES
193
198
- FPM:
194
199
. Flushing headers without a body will now succeed. See GH-12785.
195
200
201
+ - Intl:
202
+ . NumberFormatter::ROUND_HALFODD added to complement existing
203
+ NumberFormatter::ROUND_HALFEVEN functionality.
204
+
196
205
- Phar:
197
206
. Added support for the unix timestamp extension for zip archives.
198
207
@@ -211,8 +220,8 @@ PHP 8.4 UPGRADE NOTES
211
220
or by invoking their constructor directly.
212
221
213
222
- PDO_DBLIB:
214
- . Fixed setAttribute and getAttribute (SakiTakamachi)
215
- . Added PdoDbLib class (danack, kocsismate)
223
+ . Fixed setAttribute and getAttribute
224
+ . Added class PdoDbLib.
216
225
217
226
- PDO_FIREBIRD:
218
227
. Added class PdoFirebird.
@@ -264,9 +273,6 @@ PHP 8.4 UPGRADE NOTES
264
273
265
274
- Curl:
266
275
. The CURLOPT_BINARYTRANSFER constant is deprecated.
267
- . curl_version() returns an additional feature_list value, which is an
268
- associative array of all known Curl features, and whether they are
269
- supported (true) or not (false).
270
276
271
277
- Date:
272
278
. Calling DatePeriod::__construct(string $isostr, int $options = 0) is
@@ -326,8 +332,6 @@ PHP 8.4 UPGRADE NOTES
326
332
have been added as aliases for NumberFormatter::ROUND_DOWN and
327
333
NumberFormatter::ROUND_UP to be consistent with the new PHP_ROUND_* modes.
328
334
RFC: https://wiki.php.net/rfc/new_rounding_modes_to_round_function
329
- . NumberFormatter::ROUND_HALFODD added to complement existing
330
- NumberFormatter::ROUND_HALFEVEN functionality.
331
335
. ResourceBundle::get() now has a tentative return type of:
332
336
ResourceBundle|array|string|int|null
333
337
0 commit comments