phpbar.de logo

Mailinglisten-Archive

[php] PHP5 :: Magicfunctions

[php] PHP5 :: Magicfunctions

Christoph Rust phpmaillist at webmaster-rust.de
Die Jun 1 16:44:19 CEST 2004


Hallo Liste!

Hab mal ne Frage bzzgl. den Magicfunctions in PHP5...

Es dreht sich um die Funktionen __call() und __set()

Folgendes Beispiel:

class foo {

    function __call($method){
        echo $method;
    }

}

$foo = new foo();
$foo->bar(); // Ausgabe "bar"

Das klappt ja alles soweit...

Wie kann ich diese Funktionen bei Statischen Methoden benutzen?

Beispiel:

class foo {

    public static function __call($method){
        echo $method;
    }

}

foo::bar();

Habt ihr eine Idee?

Danke im Vorraus...

php::bar PHP Wiki   -   Listenarchive