summaryrefslogtreecommitdiff
path: root/Zend/zend_execute.h
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2014-04-11 18:21:46 +0200
committerBob Weinand <bobwei9@hotmail.com>2014-04-11 18:21:46 +0200
commitee2a7c7d41ec98c7529b46583f49e0936cac8774 (patch)
tree9f7cc94cac8354597b4143f234635ee59e6bc58c /Zend/zend_execute.h
parentad05d3898eae472532620ce9623c9d39c23ef16a (diff)
downloadphp-git-ee2a7c7d41ec98c7529b46583f49e0936cac8774.tar.gz
Fixed disallowal of array usage in constants at run-time
Added at the same time the possibility of array dereferencing to complete the set of features (useful application of arrays in constants)
Diffstat (limited to 'Zend/zend_execute.h')
-rw-r--r--Zend/zend_execute.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend_execute.h b/Zend/zend_execute.h
index 0d3a908a15..179eacdf52 100644
--- a/Zend/zend_execute.h
+++ b/Zend/zend_execute.h
@@ -362,6 +362,8 @@ ZEND_API zend_class_entry *zend_fetch_class(const char *class_name, uint class_n
ZEND_API zend_class_entry *zend_fetch_class_by_name(const char *class_name, uint class_name_len, const zend_literal *key, int fetch_type TSRMLS_DC);
void zend_verify_abstract_class(zend_class_entry *ce TSRMLS_DC);
+ZEND_API void zend_fetch_dimension_by_zval(zval **result, zval *container, zval *dim TSRMLS_DC);
+
#ifdef ZEND_WIN32
void zend_init_timeout_thread(void);
void zend_shutdown_timeout_thread(void);