<?php

class Foo {
	private $bar = 'bar';
}

$f = new Foo();
var_dump($f->bar);