Skip to content

Commit e1531b3

Browse files
committed
[ci skip] UPGRADING
1 parent 643a579 commit e1531b3

File tree

2 files changed

+88
-0
lines changed

2 files changed

+88
-0
lines changed

UPGRADING

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,91 @@ PHP 8.2 UPGRADE NOTES
257257
11. Changes to INI File Handling
258258
========================================
259259

260+
- Parsing of some ill-formatted values will now trigger a warning when this was
261+
silently ignored before. Interpretation of these values is not changed, for
262+
backwards compatibility. This affects the following settings:
263+
. bcmath.scale
264+
. com.code_page
265+
. default_socket_timeout
266+
. fiber.stack_size
267+
. hard_timeout
268+
. intl.error_level
269+
. ldap.max_links
270+
. max_input_nesting_level
271+
. max_input_vars
272+
. mbstring.regex_retry_limit
273+
. mbstring.regex_stack_limit
274+
. mysqli.allow_local_infile
275+
. mysqli.allow_persistent
276+
. mysqli.default_port
277+
. mysqli.max_links
278+
. mysqli.max_persistent
279+
. mysqli.reconnect
280+
. mysqli.rollback_on_cached_plink
281+
. mysqlnd.log_mask
282+
. mysqlnd.mempool_default_size
283+
. mysqlnd.net_read_buffer_size
284+
. mysqlnd.net_read_timeout
285+
. oci8.default_prefetch
286+
. oci8.max_persistent
287+
. oci8.persistent_timeout
288+
. oci8.ping_interval
289+
. oci8.prefetch_lob_size
290+
. oci8.privileged_connect
291+
. oci8.statement_cache_size
292+
. odbc.allow_persistent
293+
. odbc.check_persistent
294+
. odbc.defaultbinmode
295+
. odbc.default_cursortype
296+
. odbc.defaultlrl
297+
. odbc.max_links
298+
. odbc.max_persistent
299+
. opcache.consistency_checks
300+
. opcache.file_update_protection
301+
. opcache.force_restart_timeout
302+
. opcache.interned_strings_buffer
303+
. opcache.jit_bisect_limit
304+
. opcache.jit_blacklist_root_trace
305+
. opcache.jit_blacklist_side_trace
306+
. opcache.jit_debug
307+
. opcache.jit_hot_func
308+
. opcache.jit_hot_loop
309+
. opcache.jit_hot_return
310+
. opcache.jit_hot_side_exit
311+
. opcache.jit_max_exit_counters
312+
. opcache.jit_max_loop_unrolls
313+
. opcache.jit_max_polymorphic_calls
314+
. opcache.jit_max_recursive_calls
315+
. opcache.jit_max_recursive_returns
316+
. opcache.jit_max_root_traces
317+
. opcache.jit_max_side_traces
318+
. opcache.log_verbosity_level
319+
. opcache.max_file_size
320+
. opcache.opt_debug_level
321+
. opcache.optimization_level
322+
. opcache.revalidate_freq
323+
. output_buffering
324+
. pcre.backtrack_limit
325+
. pcre.recursion_limit
326+
. pgsql.max_links
327+
. pgsql.max_persistent
328+
. post_max_size
329+
. realpath_cache_size
330+
. realpath_cache_ttl
331+
. session.cache_expire
332+
. session.cookie_lifetime
333+
. session.gc_divisor
334+
. session.gc_maxlifetime
335+
. session.gc_probability
336+
. soap.wsdl_cache_limit
337+
. soap.wsdl_cache_ttl
338+
. unserialize_max_depth
339+
. upload_max_filesize
340+
. user_ini.cache_ttl
341+
. xmlrpc_error_number
342+
. zend.assertions
343+
. zlib.output_compression_level
344+
260345
========================================
261346
12. Windows Support
262347
========================================

UPGRADING.INTERNALS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ PHP 8.2 INTERNALS UPGRADE NOTES
2929
* A new ZEND_THREEWAY_COMPARE() macro has been introduced which does a
3030
three-way comparison of two integers and returns -1, 0 or 1 if the LHS is
3131
smaller, equal or larger than the RHS
32+
* Deprecated zend_atoi() and zend_atol(). Use ZEND_STRTOL() for general purpose
33+
string to long conversion, or a variant of zend_ini_parse_quantity() for
34+
parsing ini quantities.
3235

3336
========================
3437
2. Build system changes

0 commit comments

Comments
 (0)