From 388c21e7646d5336ca734d1a98cc1d64736a327f Mon Sep 17 00:00:00 2001 From: Gabriel Caruso Date: Fri, 26 Oct 2018 00:09:50 -0300 Subject: [PATCH] Add is_iterable to opcache Optimizer --- ext/opcache/Optimizer/zend_func_info.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/opcache/Optimizer/zend_func_info.c b/ext/opcache/Optimizer/zend_func_info.c index f89e8c7946..8e590b95e9 100644 --- a/ext/opcache/Optimizer/zend_func_info.c +++ b/ext/opcache/Optimizer/zend_func_info.c @@ -606,6 +606,7 @@ static const func_info_t func_infos[] = { F0("is_scalar", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_TRUE), F0("is_callable", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_TRUE), F0("is_countable", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_TRUE), + F0("is_iterable", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_TRUE), F0("pclose", MAY_BE_FALSE | MAY_BE_LONG), F1("popen", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_RESOURCE), F0("readfile", MAY_BE_FALSE | MAY_BE_LONG), -- 2.50.0