Searched refs:getValue (Results 1 – 25 of 30) sorted by relevance
12
/PHP-7.3/ext/reflection/tests/ |
H A D | ReflectionProperty_setAccessible.phpt | 21 var_dump($protected->getValue($a)); 37 var_dump($private->getValue($a)); 57 var_dump($protected->getValue($a)); 59 var_dump($private->getValue($a)); 60 var_dump($privateStatic->getValue()); 67 var_dump($protected->getValue($a)); 69 var_dump($private->getValue($a)); 106 var_dump($protected->getValue($b)); 108 var_dump($private->getValue($b)); 114 var_dump($protected->getValue($b)); [all …]
|
H A D | ReflectionProperty_getValue_error.phpt | 2 Test ReflectionProperty::getValue() errors. 22 var_dump($propInfo->getValue()); 25 var_dump($propInfo->getValue($instance, true)); 28 var_dump($propInfo->getValue(true)); 34 var_dump($propInfo->getValue($instance, true)); 37 var_dump($propInfo->getValue(true)); 42 var_dump($propInfo->getValue($instance)); 50 var_dump($propInfo->getValue($invalidInstance)); 56 Warning: ReflectionProperty::getValue() expects exactly 1 parameter, 0 given in %s on line %d 61 Warning: ReflectionProperty::getValue() expects exactly 1 parameter, 2 given in %s on line %d [all …]
|
H A D | bug30146.phpt | 2 Reflection Bug #30146 (ReflectionProperty->getValue() requires instance for static property) 10 var_dump($r->getValue(null)); 13 var_dump($r->getValue()); 16 var_dump($r->getValue());
|
H A D | ReflectionProperty_basic1.phpt | 2 …export(), getName(), isPublic(), isPrivate(), isProtected(), isStatic(), getValue() and setValue(). 28 echo "getValue():\n"; 29 var_dump($propInfo->getValue($instance)); 31 echo "getValue() after a setValue():\n"; 32 var_dump($propInfo->getValue($instance)); 74 getValue(): 76 getValue() after a setValue(): 103 getValue(): 105 getValue() after a setValue():
|
H A D | ReflectionClassConstant_basic1.phpt | 2 Test usage of ReflectionClassConstant methods __toString(), export(), getName(), getValue(), isPubl… 19 echo "getValue():\n"; 20 var_dump($constInfo->getValue()); 67 getValue(): 101 getValue(): 135 getValue(): 169 getValue():
|
H A D | bug75231.phpt | 2 Bug #75231: ReflectionProperty#getValue() incorrectly works with inherited classes 21 print_r((new ReflectionProperty(B::class, 'prop'))->getValue(new A()).PHP_EOL);
|
H A D | bug72174.phpt | 2 Bug #72174: ReflectionProperty#getValue() causes __isset call 31 var_dump($reflectionBar->getValue($instance));
|
H A D | bug46064.phpt | 20 var_dump($h->getValue($o)); 41 var_dump($p->getValue($this), $p->isDefault(), $p->isPublic());
|
H A D | internal_static_property.phpt | 12 var_dump($rp->getValue());
|
H A D | bug53366.phpt | 15 var_dump($reflect->getProperty('id')->getValue($myClass));
|
H A D | bug37816.phpt | 17 $x = $r->getValue($o);
|
H A D | bug40794.phpt | 16 $array[$prop->getName()] = $prop->getValue($obj);
|
H A D | ReflectionClassConstant_getValue.phpt | 20 var_dump((new ReflectionClassConstant('A', 'X'))->getValue());
|
H A D | bug49719.phpt | 36 var_dump($prop->getValue(new b2));
|
H A D | bug76936.phpt | 37 echo $p->getName() .' = '. $p->getValue($f) ."\n";
|
/PHP-7.3/Zend/tests/ |
H A D | bug63468.phpt | 9 return call_user_func(array('Bar', 'getValue')); 12 private static function getValue() 20 public static function getValue()
|
H A D | bug39944.phpt | 7 function &getValue() { 16 setValue(getValue(), 10); 21 setValue(getValue(), 10);
|
H A D | bug37212.phpt | 15 protected function getValue() 25 $this->value = $obj->getValue();
|
H A D | modify_isref_value_return.phpt | 15 (new ReflectionProperty('A', 'b'))->getValue($a)[] = 42;
|
H A D | bug78921.phpt | 31 $value = $reflectionProperty->getValue();
|
/PHP-7.3/ext/standard/tests/array/ |
H A D | usort_object1.phpt | 32 if($value1->getValue() == $value2->getValue()) 34 else if($value1->getValue() > $value2->getValue()) 61 public function getValue() {
|
H A D | uasort_object1.phpt | 40 if($value1->getValue() == $value2->getValue()) 42 else if($value1->getValue() > $value2->getValue()) 69 public function getValue() {
|
H A D | array_walk_object2.phpt | 26 var_dump($value->getValue()); 53 public function getValue()
|
H A D | array_walk_recursive_object2.phpt | 26 var_dump($value->getValue()); 53 public function getValue()
|
/PHP-7.3/ext/mysqli/tests/ |
H A D | reflection_tools.inc | 70 // printf("Value\n"); var_export($prop->getValue());
|
Completed in 38 milliseconds
12