Re: [PHP] is_subclass_of() weird behaviour with APC

2005-10-05 Thread ogrange
2005/10/5, Jochem Maas <[EMAIL PROTECTED]>: ... > > function Object() > > { > > if (!is_subclass_of($this, "Object")) > > { > > could it be a case-sensitivity problem (within APC) > so that maybe this does work?: > > if (!is_subclass_of($this, "object")) ... It behaves the same. I get

Re: [PHP] is_subclass_of() weird behaviour with APC

2005-10-05 Thread Jochem Maas
[EMAIL PROTECTED] wrote: Hello, I posted to pecl-dev but got no reply. I'm sorry if you already read this message on pecl-dev. I'm experiencing strange behaviour with APC. We use the famous trick to simulate an abstract class in PHP 4 using is_subclass_of(), as in : class Object { // propert

[PHP] is_subclass_of() weird behaviour with APC

2005-10-05 Thread ogrange
Hello, I posted to pecl-dev but got no reply. I'm sorry if you already read this message on pecl-dev. I'm experiencing strange behaviour with APC. We use the famous trick to simulate an abstract class in PHP 4 using is_subclass_of(), as in : class Object { // properties... function Object()