Re: [PHP-DEV] (s|g)etStaticPropertyValue

2005-03-06 Thread Zeev Suraski
At 13:26 06/03/2005, Timm Friebe wrote: Hello, I saw there are two new ReflectionClass methods: * getStaticPropertyValue() * getStaticPropertyValue() How do these differ (excepting being one method call) from: $value= $reflectionClass->getProperty('instance')->getValue(); and $reflectionCla

Re: [PHP-DEV] (s|g)etStaticPropertyValue

2005-03-06 Thread sarose
I think for me, it is the most comfortable way to refelect the properties. When it is refelecting it should follow a std. pattern - Original Message - From: "Timm Friebe" <[EMAIL PROTECTED]> To: "internals" Sent: Sunday, March 06, 2005 5:11

[PHP-DEV] (s|g)etStaticPropertyValue

2005-03-06 Thread Timm Friebe
Hello, I saw there are two new ReflectionClass methods: * getStaticPropertyValue() * getStaticPropertyValue() How do these differ (excepting being one method call) from: $value= $reflectionClass->getProperty('instance')->getValue(); and $reflectionClass->getProperty('instance')->setVal