__callStatic

http://php.net/__callStatic

Equivalent to __call(), but for static methods.

<?php
class helper { 
    static function __callStatic($name, $args) {
        echo $name.'('.implode(',', $args).')';
    } 
}
helper::test("foo","bar");
?>
Output
test(foo,bar)