<?php class Foo { function DoFoo() { print("[" . get_called_class() . "]"); } } class Bar { function DoBar() { Foo::DoFoo(); } } // Called by direct static call. Foo::DoFoo(); // Called by indirect static call, without an object context. Bar::DoBar(); // Called by indirect static call, from within an (unrelated) object context. // (But still, ultimately, a static call). $Bar = new Bar(); $Bar->DoBar();
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`