File: 
 
[ELWIX - Embedded LightWeight unIX -] / 
embedaddon / 
php / 
Zend / 
tests / 
bug47054.phpt
 Revision 
1.1.1.1 (vendor branch): 
download - view: 
text, 
annotated - 
select for diffs - 
revision graph
Tue Feb 21 23:47:52 2012 UTC (13 years, 8 months ago) by 
misho
Branches: 
php,
MAIN
CVS tags: 
v5_4_3elwix,
v5_4_29p0,
v5_4_29,
v5_4_20p0,
v5_4_20,
v5_4_17p0,
v5_4_17,
v5_3_10,
HEAD
php
    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>