* Thus wrote Robert Cummings:
> On Mon, 2004-08-23 at 20:54, John Holmes wrote:
> > [EMAIL PROTECTED] wrote:
> > 
> > You could write a wrapper class for Test that kept count of the 
> > instances and returned a new object upon request...
> 
> In PHP5:
> 
> <?php
> 
> class Foo
> {
>     static $instances = 0;
> 
>     function __construct()
>     {
>         Foo::$instances++; 
>     }
> 
>     function __destruct()
>     {
>         Foo::$instances--;
>     }

And:
      function __clone() 
      {
        Foo::$instances++;
      }


Curt
-- 
First, let me assure you that this is not one of those shady pyramid schemes
you've been hearing about.  No, sir.  Our model is the trapezoid!

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to