@@ -42,8 +42,8 @@ PHP 8.5 UPGRADE NOTES
42
42
have run and the output handlers have been cleaned up.
43
43
This is a consequence of fixing GH-18033.
44
44
. Traits are now bound before the parent class. This is a subtle behavioral
45
- change, but should closer match user expectations, demonstrated by GH-15753
46
- and GH-16198.
45
+ change, but should more closely match user expectations, demonstrated by
46
+ GH-15753 and GH-16198.
47
47
48
48
- FileInfo:
49
49
. finfo_file() and finfo::file() now throws a ValueError instead of a
@@ -91,7 +91,7 @@ PHP 8.5 UPGRADE NOTES
91
91
argument when fetching into an object, will now throw an Error.
92
92
. The value of the constants PDO::FETCH_GROUP, PDO::FETCH_UNIQUE,
93
93
PDO::FETCH_CLASSTYPE, PDO::FETCH_PROPS_LATE, and PDO::FETCH_SERIALIZE
94
- has changed.
94
+ have changed.
95
95
. A ValueError is now thrown if PDO::FETCH_PROPS_LATE is used with a fetch
96
96
mode different than PDO::FETCH_CLASS, consistent with other fetch flags.
97
97
. A ValueError is now thrown if PDO::FETCH_INTO is used as a fetch mode in
@@ -158,7 +158,7 @@ PHP 8.5 UPGRADE NOTES
158
158
CURLINFO_USED_PROXY gets zero set if no proxy was used in the
159
159
previous transfer or a non-zero value if a proxy was used.
160
160
CURLINFO_HTTPAUTH_USED and CURLINFO_PROXYAUTH_USED get bitmasks
161
- indicating the http and proxy authentication methods that were
161
+ indicating the HTTP and proxy authentication methods that were
162
162
used in the previous request. See CURLAUTH_* constants for
163
163
possible values.
164
164
. Added CURLOPT_INFILESIZE_LARGE Curl option, which is a safe
@@ -168,10 +168,10 @@ PHP 8.5 UPGRADE NOTES
168
168
accepts the largest integer value the system can handle.
169
169
. Added CURLFOLLOW_OBEYCODE, CURLFOLLOW_FIRSTONLY and CURLFOLLOW_ALL values for
170
170
CURLOPT_FOLLOWLOCATION curl_easy_setopt option.
171
- CURLFOLLOW_OBEYCODE to follow more strictly in regard of redirect
171
+ CURLFOLLOW_OBEYCODE to follow more strictly in regard to redirect
172
172
if they are allowed. CURLFOLLOW_FIRSTONLY to follow only the
173
- first redirect thus if there any follow up redirect, it won't go
174
- any further. CURLFOLLOW_ALL is equivalent to set CURLOPT_FOLLOWLOCATION
173
+ first redirect thus if there is any follow up redirect, it won't go
174
+ any further. CURLFOLLOW_ALL is equivalent to setting CURLOPT_FOLLOWLOCATION
175
175
to true.
176
176
177
177
- DOM:
@@ -187,7 +187,7 @@ PHP 8.5 UPGRADE NOTES
187
187
number formats.
188
188
. Added Locale::addLikelySubtags and Locale::minimizeSubtags to
189
189
handle likely tags on a given locale.
190
- . Added IntlListFormatter class to format, order, punctuates
190
+ . Added IntlListFormatter class to format, order, and punctuate
191
191
a list of items with a given locale, IntlListFormatter::TYPE_AND,
192
192
IntlListFormatter::TYPE_OR, IntlListFormatter::TYPE_UNITS operands and
193
193
IntlListFormatter::WIDTH_WIDE, IntlListFormatter::WIDTH_SHORT and
@@ -247,7 +247,7 @@ PHP 8.5 UPGRADE NOTES
247
247
was actually never possible.
248
248
249
249
- LDAP:
250
- . ldap_get_option() now accept a NULL connection, as ldap_set_option(),
250
+ . ldap_get_option() now accepts a NULL connection, as ldap_set_option(),
251
251
to allow retrieval of global options.
252
252
253
253
- libxml:
@@ -260,7 +260,7 @@ PHP 8.5 UPGRADE NOTES
260
260
. PDO::pgsqlCopyFromArray also supports inputs as Iterable.
261
261
. Pdo\Pgsql::setAttribute and Pdo\Pgsql::prepare supports
262
262
PDO::ATTR_PREFETCH sets to 0 which set to lazy fetch mode.
263
- In this mode, statements cannot be run parallely .
263
+ In this mode, statements cannot be run in parallel .
264
264
265
265
- PDO_SQLITE:
266
266
. SQLite PDO::quote() will now throw an exception or emit a warning,
@@ -287,7 +287,7 @@ PHP 8.5 UPGRADE NOTES
287
287
are enum cases rather than normal class constants.
288
288
289
289
- Session:
290
- . session_start is stricter in regard of the option argument.
290
+ . session_start is stricter in regard to the option argument.
291
291
It throws a ValueError if the whole is not a hashmap or
292
292
a TypeError if read_on_close value is not a valid type
293
293
compatible with int.
@@ -304,7 +304,7 @@ PHP 8.5 UPGRADE NOTES
304
304
ValueError if the port is lower than 0 or greater than 65535,
305
305
also if any of the hints array entry is indexes numerically.
306
306
. socket_addrinfo_lookup throws a TypeError if any of the hints
307
- values cannot be cast to a int and can throw a ValueError if
307
+ values cannot be cast to int and can throw a ValueError if
308
308
any of these values overflow.
309
309
. socket_set_option with MCAST_LEAVE_GROUP/MCAST_LEAVE_SOURCE_GROUP
310
310
options will throw an exception if the value isn't a valid object
0 commit comments