diff options
author | Reeze Xia <reeze@php.net> | 2015-02-28 16:37:14 +0800 |
---|---|---|
committer | Reeze Xia <reeze@php.net> | 2015-02-28 16:37:14 +0800 |
commit | f824f91ac95000c7a6e60117d00088c253e16213 (patch) | |
tree | e545f61d37e4e08de7a6700ee5ae663e771b89df /ext/spl/php_spl.c | |
parent | e9c679872165fe2a033531670cb9e1682b661ba2 (diff) | |
download | php-git-f824f91ac95000c7a6e60117d00088c253e16213.tar.gz |
Fixed bug #69141 Missing arguments in reflection info for some builtin functions
This include:
- setcookie (missing "httponly")
- setrawcookie (missing "httponly")
- spl_autoload_register (missing 2 optional params)
- mktime (missing "is_dst")
- gmmktime (missing "is_dst")
Diffstat (limited to 'ext/spl/php_spl.c')
-rw-r--r-- | ext/spl/php_spl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index 3c52c5dba1..6b886b7ef3 100644 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -902,6 +902,8 @@ ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_spl_autoload_register, 0, 0, 0) ZEND_ARG_INFO(0, autoload_function) + ZEND_ARG_INFO(0, throw) + ZEND_ARG_INFO(0, prepend) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_spl_autoload_unregister, 0, 0, 1) |