We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9104f15 commit 7deac3dCopy full SHA for 7deac3d
ext/reflection/php_reflection.h
@@ -50,7 +50,10 @@ extern PHPAPI zend_class_entry *reflection_lazy_object_ptr;
50
51
PHPAPI void zend_reflection_class_factory(zend_class_entry *ce, zval *object);
52
53
-/* Sets the value of a property, bypassing a set hook if defined. */
+/* Sets the value of a property, bypassing a set hook if defined.
54
+ * 'cache_slot': An opaque pointer used as an internal cache. The same
55
+ * cache_slot can be used again with the same 'unmangled_name' and 'scope'.
56
+ * Must be zeroed on first use. May be NULL. */
57
PHPAPI void zend_reflection_property_set_raw_value(
58
const zend_property_info *prop, zend_string *unmangled_name,
59
void *cache_slot[3], const zend_class_entry *scope,
0 commit comments