<?php
class foo {
    public static function bar() {
	forward_static_call('foo::bar');
    }
}

foo::bar();
?>