Sebastian Bergmann wrote: > I was not able to strip the application I'm seeing this in down to a > small, reproducing snippet, yet.
Okay, here goes:
<?php class Foo { function doFoo() { print_r($this); } }
class Bar { function doBar() { Foo::doFoo(); } }
$bar = new Bar; $bar->doBar(); ?>
bar Object ( )
I know that this code's logic is wrong (after the latest refactoring of the previously mentioned application I had a leftover (no unit tests, yet *sigh*) where a method was previously static).
Yes, (unfortunately) it's correct. We don't do instance checking on every method invocation because it would be dead slow...
Zeev
-- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php