Searched refs:setValue (Results 1 – 17 of 17) sorted by relevance
/PHP-8.1/ext/reflection/tests/ |
H A D | ReflectionProperty_setAccessible.phpt | 25 $protected->setValue($a, 'e'); 26 $protectedStatic->setValue('f'); 27 $private->setValue($a, 'g'); 28 $privateStatic->setValue('h'); 45 $protected->setValue($a, 'i'); 47 $private->setValue($a, 'k'); 48 $privateStatic->setValue('l'); 65 $protected->setValue($b, 'e'); 67 $private->setValue($b, 'g'); 81 $protected->setValue($b, 'h'); [all …]
|
H A D | internal_static_property.phpt | 2 ReflectionProperty::get/setValue() on internal static property 9 $rp->setValue(42);
|
H A D | ReflectionProperty_setValue_error.phpt | 2 Test ReflectionProperty::setValue() error cases. 24 $propInfo->setValue($instance, "NewValue"); 29 var_dump($propInfo->setValue($instanceWithNoProperties, "NewValue"));
|
H A D | bug30146.phpt | 12 $r->setValue(NULL, 2); 15 $r->setValue(3);
|
H A D | ReflectionProperty_basic1.phpt | 2 …String(), getName(), isPublic(), isPrivate(), isProtected(), isStatic(), getValue() and setValue(). 26 $propInfo->setValue($instance, "NewValue"); 27 echo "getValue() after a setValue():\n"; 65 getValue() after a setValue(): 87 getValue() after a setValue():
|
H A D | ReflectionProperty_setValue_readonly.phpt | 2 Test ReflectionProperty::setValue() error cases. 13 $reflection->setValue(Foo::Bar, 1);
|
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 | ReflectionProperty_typed_static.phpt | 22 $rp->setValue("24"); 26 $rp->setValue("foo"); 36 $rp->setValue("foo");
|
H A D | bug79683.phpt | 26 $property->setValue($b, new A());
|
/PHP-8.1/Zend/tests/ |
H A D | bug72177.phpt | 2 Bug #72177 Scope issue in __destruct after ReflectionProperty::setValue() 24 $prop->setValue($this, null);
|
H A D | bug39944.phpt | 12 function setValue(&$int, $iNewValue) { 16 setValue(getValue(), 10); 21 setValue(getValue(), 10);
|
H A D | bug63762.phpt | 10 $ref->setValue($e, array(NULL)); 15 $ref->setValue($e, array(array())); 19 $ref->setValue($e, array(array(
|
H A D | bug72177_2.phpt | 2 Bug #72177 Scope issue in __destruct after ReflectionProperty::setValue()
|
H A D | bug78868.phpt | 28 $props[0]->setValue(2); //causes constant resolving, which runs autoload, all with EG(fake_scope) =…
|
/PHP-8.1/ext/reflection/ |
H A D | php_reflection.stub.php | 408 public function setValue(mixed $objectOrValue, mixed $value = UNKNOWN): void {} function in ReflectionProperty
|
H A D | php_reflection_arginfo.h | 723 ZEND_METHOD(ReflectionProperty, setValue); 1000 ZEND_ME(ReflectionProperty, setValue, arginfo_class_ReflectionProperty_setValue, ZEND_ACC_PUBLIC)
|
H A D | php_reflection.c | 5626 ZEND_METHOD(ReflectionProperty, setValue) in ZEND_METHOD() argument
|
Completed in 51 milliseconds