summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-09-28 22:55:22 +0000
committerMarcus Boerger <helly@php.net>2004-09-28 22:55:22 +0000
commite39f3f3f487c07e6bdac2dca33bc16bb1e86ec23 (patch)
treed5295ba1e8af0ccefe0e2b041426570f10c84dab /Zend/zend_API.h
parent72b2d1c9ee7d3d7608d55b8db9bfe0ec21981c17 (diff)
downloadphp-git-e39f3f3f487c07e6bdac2dca33bc16bb1e86ec23.tar.gz
Simplify/Optmize magic method calls (__get/__set/__call/__clone/__destruct)
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r--Zend/zend_API.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index 12312938c0..e5d3927c9b 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -146,6 +146,9 @@ ZEND_API int _zend_get_parameters_array(int ht, int param_count, zval **argument
ZEND_API int zend_get_parameters_ex(int param_count, ...);
ZEND_API int _zend_get_parameters_array_ex(int param_count, zval ***argument_array TSRMLS_DC);
+/* internal function to efficiently copy parameters when executing __call() */
+ZEND_API int zend_copy_parameters_array(int param_count, zval *argument_array TSRMLS_DC);
+
#define zend_get_parameters_array(ht, param_count, argument_array) \
_zend_get_parameters_array(ht, param_count, argument_array TSRMLS_CC)
#define zend_get_parameters_array_ex(param_count, argument_array) \