[PHP] Re: PHP 5.3.0RC1

2009-03-24 Thread Johannes Mueller
Lukas Kahwe Smith wrote: Windows binaries are available here: http://windows.php.net/qa/ The .ini files in the 5.3RC1-VC6-nts-package are empty. Can someone fix this? thanks for your hard work Johannes -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] wrong behaviour with is_subclass_of() ??

2008-09-19 Thread Johannes Mueller
Stut wrote: outputs: B implements I I would expect the following output: A implements I B implements I Because there is a big difference between extends and implements, one of which being that the class is not considered to be a subclass of an interface it implements. Seems entirely logical

Re: [PHP] wrong behaviour with is_subclass_of() ??

2008-09-19 Thread Johannes Mueller
Jochem Maas wrote: B implements I because B subclasses A and A implements I, I is not a base class. try the experiment with is_a() instead. This was my starting point and is_subclass_of() was a sub-ordinate target, because i needed it on the class-side of life and not the instantiated