I need to have a class constructor in PHP call its parent\'s parent\'s (grandparent?) constructor without calling the parent constructor.
//
Beautiful solution using Reflection.
Reflection
invoke($this); } } $kiddo = new Kiddo(); $papa = new Papa();