<?php class Base { public function ProcessInput() { $this->Handler(); } public function Handler() { // Some default code or just leave empty echo "Base Hander() is called\n"; } } class Specific extends Base { public function Handler() { echo "Specific Hander() is called\n"; } } $spec = new Specific; $spec->ProcessInput();
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`