summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2016-05-12 13:47:22 +0300
committerDmitry Stogov <dmitry@zend.com>2016-05-12 13:47:22 +0300
commit7b94b958ccbc87595d688d178f96daf96a9f54b3 (patch)
treef74f2fdf78a194c86fa7d34f27e0cf8f1e2d8ec0 /Zend/zend_API.h
parent00390449c6c5d3cb65e129cb558b9e523e17090f (diff)
downloadphp-git-7b94b958ccbc87595d688d178f96daf96a9f54b3.tar.gz
Intern some known (and offten used) strings.
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r--Zend/zend_API.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index 1078b257eb..91ba73cae7 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -351,6 +351,7 @@ ZEND_API int zend_update_static_property_double(zend_class_entry *scope, const c
ZEND_API int zend_update_static_property_string(zend_class_entry *scope, const char *name, size_t name_length, const char *value);
ZEND_API int zend_update_static_property_stringl(zend_class_entry *scope, const char *name, size_t name_length, const char *value, size_t value_length);
+ZEND_API zval *zend_read_property_ex(zend_class_entry *scope, zval *object, zend_string *name, zend_bool silent, zval *rv);
ZEND_API zval *zend_read_property(zend_class_entry *scope, zval *object, const char *name, size_t name_length, zend_bool silent, zval *rv);
ZEND_API zval *zend_read_static_property(zend_class_entry *scope, const char *name, size_t name_length, zend_bool silent);