Skip to content

Commit 67bc4cf

Browse files
committed
[ci skip] UPGRADING
1 parent 9874acf commit 67bc4cf

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
@@ -253,6 +253,91 @@ PHP 8.2 UPGRADE NOTES
253253
11. Changes to INI File Handling
254254
========================================
255255

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

UPGRADING.INTERNALS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ PHP 8.2 INTERNALS UPGRADE NOTES
2424
* The main/php_stdint.h header has been removed.
2525
Include the standard <inttypes.h> and/or <stdint.h> headers instead.
2626
Replace usage of u_char by the standard C99 uint8_t type.
27+
* Deprecated zend_atoi() and zend_atol(). Use ZEND_STRTOL() for general purpose
28+
string to long conversion, or zend_ini_parse_quantity() for parsing ini
29+
quantities.
2730

2831
========================
2932
2. Build system changes

0 commit comments

Comments
 (0)