diff options
| author | Márcio Almada <marcio3w@gmail.com> | 2016-04-17 04:27:15 -0400 |
|---|---|---|
| committer | Bob Weinand <bobwei9@hotmail.com> | 2016-04-21 01:22:28 +0200 |
| commit | 9f3eab44dfc99ac032dbfc84418925ee3adcd175 (patch) | |
| tree | d73c61fdd157be90114f21458c2e7a73c0ca4612 /Zend/zend_execute.h | |
| parent | 85867268fdae2b742ce44bc76b7b57053d5063a8 (diff) | |
| download | php-git-9f3eab44dfc99ac032dbfc84418925ee3adcd175.tar.gz | |
allow null coalescing (??) on constant expressions
Diffstat (limited to 'Zend/zend_execute.h')
| -rw-r--r-- | Zend/zend_execute.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_execute.h b/Zend/zend_execute.h index 83336061e4..c47667b8f0 100644 --- a/Zend/zend_execute.h +++ b/Zend/zend_execute.h @@ -296,6 +296,7 @@ ZEND_API zend_class_entry *zend_fetch_class_by_name(zend_string *class_name, con void zend_verify_abstract_class(zend_class_entry *ce); ZEND_API void zend_fetch_dimension_by_zval(zval *result, zval *container, zval *dim); +ZEND_API void zend_fetch_dimension_by_zval_is(zval *result, zval *container, zval *dim, int dim_type); ZEND_API zval* zend_get_compiled_variable_value(const zend_execute_data *execute_data_ptr, uint32_t var); |
