Annotation of embedaddon/php/Zend/tests/bug47054.phpt, revision 1.1
1.1 ! misho 1: --TEST--
! 2: Bug #47054 (BC break in static functions called as dynamic)
! 3: --FILE--
! 4: <?php
! 5:
! 6: class C {
! 7: final static function s() {
! 8: print "Called class: " . get_called_class() . "\n";
! 9: }
! 10: }
! 11: class D extends C {
! 12: public function m() {
! 13: $this->s();
! 14: }
! 15: }
! 16:
! 17: $d = new D();
! 18: $d->m();
! 19:
! 20: C::s();
! 21:
! 22: $c = new C();
! 23: $c->s();
! 24:
! 25: get_called_class();
! 26:
! 27: D::m();
! 28:
! 29: ?>
! 30: --EXPECTF--
! 31: Called class: D
! 32: Called class: C
! 33: Called class: C
! 34:
! 35: Warning: get_called_class() called from outside a class in %s on line %d
! 36:
! 37: Strict Standards: Non-static method D::m() should not be called statically in %s on line %d
! 38:
! 39: Fatal error: Using $this when not in object context in %s on line %d
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>