<?php class Test { static $instances; public function __construct() { var_dump(self::$instances[0] = $this); } function __destruct() { unset(self::$instances[0]); } } new Test(); new Test();
You have javascript disabled. You will not be able to edit any code.