Hello, Sorry late replies shouldn't be allowed ;)
class A { private $foo = 2; }
class B extends A { }
$b = new B;
$b->foo = 3; // Allowed already, it will create a public property foo in $b
--
Etienne Kneuss
http://www.colder.ch
Men never do evil so completely and cheerfully as
when they do it from a religious conviction.
-- Pascal
