diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2017-10-30 22:00:42 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2017-10-30 22:00:42 +0100 |
commit | cb2884679c25a40fb6edbccc598411dcf0cff9bc (patch) | |
tree | cd8cae8d88ce616a3eeac377166377cd7afe2387 /Zend/zend_API.h | |
parent | fcc08ce19f39f7ab1381ecc8a010037d41819329 (diff) | |
download | php-git-cb2884679c25a40fb6edbccc598411dcf0cff9bc.tar.gz |
Remove zend_get_parameters(_ex) APIs
zend_get_parameters_ex() has been marked as deprecated for a long
time already. What zend_get_paramers() does is even more
questionable under PHP7. Both functions are obsoleted by the ZPP
mechanism, so I'm dropping them.
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r-- | Zend/zend_API.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h index 04706aca31..cc6a7c361d 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -253,8 +253,6 @@ typedef struct _zend_fcall_info_cache { ZEND_API int zend_next_free_module(void); BEGIN_EXTERN_C() -ZEND_API int zend_get_parameters(int ht, int param_count, ...); -ZEND_API ZEND_ATTRIBUTE_DEPRECATED int zend_get_parameters_ex(int param_count, ...); ZEND_API int _zend_get_parameters_array_ex(int param_count, zval *argument_array); /* internal function to efficiently copy parameters when executing __call() */ |