Ver originalclass Test{ private $_name = 'Fulano'; public static function printName() { $self = new self(); echo $self->_name; }} Test::printName();