Happy New Year!!
Is there a more efficient type of class accessor than using Get/Set like
this?
function GetValue()
{
return $this->value;
}
function SetValue($value)
{
$this->value = $value;
}
Robin 'Sparky' Kopetzky
Black Mesa Computers/Internet Service
Grants, NM 87020
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

