>Hi all
>How can generate a uniqe id for every object of a class,
>for example
>

A very simple (untested) example could be:

int UniqueNumer(void)
{
  static int nUniqueKey = 0;
  return ++nUniqueKey;
}


>class A
>{
>  var $id;
>   function A()
>  {
>    $this->id = UniqueNumer();
>  }
>}


It could be help full to know why you need to
create a unique number? Is it for ex only for naming
temporary files? Or should the uniqueness persist
over time?

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to