<?php class Foo { function bar(){ $this->lol(); } } class Qux extends Foo { protected function lol(){ echo "gotcha"; } } $qux = new Qux(); $qux->bar();
You have javascript disabled. You will not be able to edit any code.