<?php class ClassWithCall { function __call($name, $arguments) { var_dump(func_get_args()); } } $cc = new ClassWithCall(); $cc->{'any string here'}(123);
You have javascript disabled. You will not be able to edit any code.