diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2019-01-28 17:12:32 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-01-29 09:42:59 +0100 |
commit | 6db97f5e3ea3ac9774a06981226a0fe1bca02b38 (patch) | |
tree | 4f358b9ec521d14775802c07301fdfbd881c7081 /Zend/zend_execute_API.c | |
parent | 9bc2cacf7f97b4fc235baa29d7c8cf7604fb39c1 (diff) | |
download | php-git-6db97f5e3ea3ac9774a06981226a0fe1bca02b38.tar.gz |
Remove each()
This has been deprecated in PHP 7.2 as part of
https://wiki.php.net/rfc/deprecations_php_7_2.
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r-- | Zend/zend_execute_API.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index 646f3b927b..edab6edaa7 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -177,8 +177,6 @@ void init_executor(void) /* {{{ */ EG(ht_iterators) = EG(ht_iterators_slots); memset(EG(ht_iterators), 0, sizeof(EG(ht_iterators_slots))); - EG(each_deprecation_thrown) = 0; - EG(persistent_constants_count) = EG(zend_constants)->nNumUsed; EG(persistent_functions_count) = EG(function_table)->nNumUsed; EG(persistent_classes_count) = EG(class_table)->nNumUsed; |