File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -440,7 +440,7 @@ PHP 8.0 UPGRADE NOTES
440440
441441- Sysvmsg:
442442 . msg_get_queue() will now return an SysvMessageQueue object rather than a
443- resource. Return value checks using is_resource() should be replaced with
443+ resource. Return value checks using is_resource() should be replaced with
444444 checks for `false`.
445445
446446- Sysvsem:
@@ -474,6 +474,12 @@ PHP 8.0 UPGRADE NOTES
474474
475475- Zlib:
476476 . gzgetss() has been removed.
477+ . inflate_init() will now return an InflateContext object rather than a
478+ resource. Return value checks using is_resource() should be replaced with
479+ checks for `false`.
480+ . deflate_init() will now return a DeflateContext object rather than a
481+ resource. Return value checks using is_resource() should be replaced with
482+ checks for `false`.
477483
478484========================================
4794852. New Features
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ typedef struct _php_zlib_context {
4747 int status ;
4848 size_t inflateDictlen ;
4949 php_zlib_buffer buffer ;
50+ zend_object std ;
5051} php_zlib_context ;
5152
5253ZEND_BEGIN_MODULE_GLOBALS (zlib )
You can’t perform that action at this time.
0 commit comments