class Base { private static $i = 0; public static function _init() { ++self::$i; } public static function test() { ++self::$i; echo 'hi all from test!: '.self::$i; } }
It looks like you're new here. If you want to get involved, click one of these buttons!