- var_dump: documentation ( source)
<?php
class Foo
{
private $privateProperty = '7Learn.com';
}
$obj = new Foo;
$reflector = new ReflectionClass($obj);
$property = $reflector->getProperty('privateProperty');
//$property->setAccessible(true);
var_dump($property->getValue($obj));