File tree 5 files changed +241
-157
lines changed
5 files changed +241
-157
lines changed Original file line number Diff line number Diff line change @@ -440,7 +440,7 @@ PHP 8.0 UPGRADE NOTES
440
440
441
441
- Sysvmsg:
442
442
. 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
444
444
checks for `false`.
445
445
446
446
- Sysvsem:
@@ -474,6 +474,12 @@ PHP 8.0 UPGRADE NOTES
474
474
475
475
- Zlib:
476
476
. 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`.
477
483
478
484
========================================
479
485
2. New Features
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ typedef struct _php_zlib_context {
47
47
int status ;
48
48
size_t inflateDictlen ;
49
49
php_zlib_buffer buffer ;
50
+ zend_object std ;
50
51
} php_zlib_context ;
51
52
52
53
ZEND_BEGIN_MODULE_GLOBALS (zlib )
You can’t perform that action at this time.
0 commit comments