jueves, 5 de noviembre de 2009

PHP stactic class

<?php
class Foo {
    public static function aStaticMethod() {
        // ...
    }
}

Foo::aStaticMethod();
?>

No hay comentarios:

Publicar un comentario