Registry class question.
am 26.02.2010 21:17:53 von Peter van der Does
Hi,
I've build a registry class to store settings I need to use in several
other classes.
Currently I've set it up with a static array in the registry class and
using two methods to access the settings and values
storeSetting($key,$value) {
$this->_settings[$key] = $value;
}
getSetting($key) {
return $this->_settings[$key];
}
The question is what the pros and cons are compared to setting a new
property with the value, like:
storeSetting($key,$value) {
$this->$key = $value;
}
and then instead of calling getSetting, you just use
$this->Registry->property
--
Peter van der Does
GPG key: E77E8E98
IRC: Ganseki on irc.freenode.net
Twitter: @petervanderdoes
WordPress Plugin Developer
Blog: http://blog.avirtualhome.com
Forums: http://forums.avirtualhome.com
Twitter: @avhsoftware
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Re: Registry class question.
am 27.02.2010 10:39:04 von Richard Quadling
On 26 February 2010 20:17, Peter van der Does wrote=
:
> Hi,
>
> I've build a registry class to store settings I need to use in several
> other classes.
>
> Currently I've set it up with a static array in the registry class and
> using two methods to access the settings and values
> storeSetting($key,$value) {
> Â $this->_settings[$key] =3D $value;
> }
>
> getSetting($key) {
> Â return $this->_settings[$key];
> }
>
> The question is what the pros and cons are compared to setting a new
> property with the value, like:
>
> storeSetting($key,$value) {
> Â $this->$key =3D $value;
> }
>
> and then instead of calling getSetting, you just use
> $this->Registry->property
>
> --
> Peter van der Does
>
> GPG key: E77E8E98
>
> IRC: Ganseki on irc.freenode.net
> Twitter: @petervanderdoes
>
> WordPress Plugin Developer
> Blog: http://blog.avirtualhome.com
> Forums: http://forums.avirtualhome.com
> Twitter: @avhsoftware
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
You can use __get(), __set(), etc. instead.
That way, $this->Registry->property can work as you want.
Something PHP is missing is the ability to have __get()/__set()/etc.
available on a static class, so you have to have an instance of the
class and then all that that entails. Singleton pattern most likely.
__getStatic(), __setStatic() (like we have __callStatic() ) would
certainly help.
Regards,
Richard.
--=20
-----
Richard Quadling
"Standing on the shoulders of some very clever giants!"
EE : http://www.experts-exchange.com/M_248814.html
EE4Free : http://www.experts-exchange.com/becomeAnExpert.jsp
Zend Certified Engineer : http://zend.com/zce.php?c=3DZEND002498&r=3D213474=
731
ZOPA : http://uk.zopa.com/member/RQuadling
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php