Add is_iterable to opcache Optimizer

This commit is contained in:
Gabriel Caruso 2018-10-26 00:09:50 -03:00
parent 68694c9997
commit 388c21e764
No known key found for this signature in database
GPG Key ID: EA85C7988F5A6877

View File

@ -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),