Lines Matching refs:getProperty
2 ReflectionClass::getProperty() - error cases
15 var_dump($rc->getProperty());
20 var_dump($rc->getProperty("a", "a"));
25 var_dump($rc->getProperty(null));
30 var_dump($rc->getProperty(1));
35 var_dump($rc->getProperty(1.5));
40 var_dump($rc->getProperty(true));
45 var_dump($rc->getProperty(array(1,2,3)));
50 var_dump($rc->getProperty(new C));
57 ReflectionClass::getProperty() expects exactly 1 argument, 0 given
58 ReflectionClass::getProperty() expects exactly 1 argument, 2 given
60 Deprecated: ReflectionClass::getProperty(): Passing null to parameter #1 ($name) of type string is …
65 ReflectionClass::getProperty(): Argument #1 ($name) must be of type string, array given
66 ReflectionClass::getProperty(): Argument #1 ($name) must be of type string, C given