Magic methods are implicitly invoked by a programming language when some event or language construct is used.
Commando need's help from you. I have a controller in Yii: class PageController extends Controller { public function actionSOMETHING_MAGIC($pagename) { // …
php yii yii-components magic-methodsIs it possible to use the __call magic method when calling functions statically?
php oop static magic-methods