Skip to content

Commit 6d54046

Browse files
committed
Merge branch 'master' into jit-dynasm
* master: Updated func info
2 parents 43a5cdd + 372397f commit 6d54046

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/opcache/Optimizer/zend_func_info.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ static const func_info_t func_infos[] = {
341341
#ifdef HAVE_STRFMON
342342
F1("money_format", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_STRING),
343343
#endif
344-
F1("substr", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_STRING),
344+
FN("substr", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_STRING),
345345
FN("substr_replace", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_STRING | MAY_BE_ARRAY | MAY_BE_ARRAY_KEY_ANY | MAY_BE_ARRAY_OF_STRING),
346346
F1("quotemeta", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_STRING),
347347
F1("ucfirst", MAY_BE_NULL | MAY_BE_STRING),
@@ -544,9 +544,9 @@ static const func_info_t func_infos[] = {
544544
F1("show_source", MAY_BE_FALSE | MAY_BE_STRING),
545545
F1("highlight_string", MAY_BE_FALSE | MAY_BE_TRUE | MAY_BE_STRING),
546546
F1("php_strip_whitespace", MAY_BE_FALSE | MAY_BE_STRING),
547-
F1("ini_get", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_STRING),
547+
FN("ini_get", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_STRING),
548548
F1("ini_get_all", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_ARRAY | MAY_BE_ARRAY_KEY_STRING | MAY_BE_ARRAY_OF_NULL | MAY_BE_ARRAY_OF_STRING | MAY_BE_ARRAY_OF_ARRAY),
549-
F1("ini_set", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_STRING),
549+
FN("ini_set", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_STRING),
550550
F1("ini_alter", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_STRING),
551551
F0("ini_restore", MAY_BE_NULL),
552552
F1("get_include_path", MAY_BE_NULL | MAY_BE_FALSE | MAY_BE_STRING),

0 commit comments

Comments
 (0)