setAccessible(TRUE); // 42 echo $reflectedProperty->getValue($instanciatedClass); $reflectedMethod = new \ReflectionMethod('BareDemoClass', 'niceButPrivateMethod'); $reflectedMethod->setAccessible(TRUE); // DNA N47°16' E11°23' echo $reflectedMethod->invoke($instanciatedClass); // you could also get the reflected property or method using the object itself: $reflectedObject = new \ReflectionObject($instanciatedClass); $reflectedProperty = $reflectedObject->getProperty('interestingThing'); // continue like above; or $reflectedMethod = $reflectedObject->getMethod('niceButPrivateMethod'); ?>