Searched refs:setValue (Results 1 – 10 of 10) sorted by relevance
/PHP-7.2/ext/reflection/tests/ |
H A D | ReflectionProperty_setValue_error.phpt | 2 Test ReflectionProperty::setValue() error cases. 22 var_dump($propInfo->setValue()); 23 var_dump($propInfo->setValue($instance)); 26 var_dump($propInfo->setValue($instance, "NewValue", true)); 29 var_dump($propInfo->setValue(true, "NewValue")); 33 var_dump($propInfo->setValue($instance, "NewValue", true)); 36 var_dump($propInfo->setValue("A new value")); 38 var_dump($propInfo->setValue()); 42 var_dump($propInfo->setValue(true, "Another new value")); 48 var_dump($propInfo->setValue($instance, "NewValue")); [all …]
|
H A D | ReflectionProperty_setAccessible.phpt | 62 $protected->setValue($a, 'e'); 63 $protectedStatic->setValue('f'); 64 $private->setValue($a, 'g'); 65 $privateStatic->setValue('h'); 110 $protected->setValue($b, 'e'); 111 $protectedStatic->setValue('f'); 112 $private->setValue($b, 'g');
|
H A D | bug71018.phpt | 2 Bug #71018 (ReflectionProperty::setValue() behavior changed) 26 $Prop1->setValue(\T1::class, "world"); 27 $Prop2->setValue(\T2::class, 'hello');
|
H A D | bug30146.phpt | 12 $r->setValue(NULL, 2); 15 $r->setValue(3);
|
H A D | ReflectionProperty_basic1.phpt | 2 …export(), getName(), isPublic(), isPrivate(), isProtected(), isStatic(), getValue() and setValue(). 30 $propInfo->setValue($instance, "NewValue"); 31 echo "getValue() after a setValue():\n"; 76 getValue() after a setValue(): 105 getValue() after a setValue():
|
/PHP-7.2/Zend/tests/ |
H A D | bug39944.phpt | 12 function setValue(&$int, $iNewValue) { 16 setValue(getValue(), 10); 21 setValue(getValue(), 10);
|
H A D | bug72177.phpt | 2 Bug #72177 Scope issue in __destruct after ReflectionProperty::setValue() 25 $prop->setValue($this, null);
|
H A D | bug63762.phpt | 11 $ref->setValue($e, array(NULL)); 16 $ref->setValue($e, array(array())); 20 $ref->setValue($e, array(array(
|
H A D | bug72177_2.phpt | 2 Bug #72177 Scope issue in __destruct after ReflectionProperty::setValue()
|
/PHP-7.2/ext/reflection/ |
H A D | php_reflection.c | 5571 ZEND_METHOD(reflection_property, setValue) in ZEND_METHOD() argument 6562 ZEND_ME(reflection_property, setValue, arginfo_reflection_property_setValue, 0)
|
Completed in 43 milliseconds