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/bug50261.phpt |
--TEST-- Bug #50261 (Crash When Calling Parent Constructor with call_user_func()) --FILE-- <?php class testClass { function testClass($x) { echo __METHOD__, " (". $x . ")\n"; } } class testClass2 extends testClass { function __construct() { static $x = 0; if ($x) { print "Infinite loop...\n"; } else { $x++; parent::__construct(1); testclass::__construct(2); call_user_func(array('parent', '__construct'), 3); call_user_func(array('testclass', '__construct'), 4); call_user_func(array('testclass', 'testclass'), 5); } } } new testClass2; ?> --EXPECTF-- Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; testClass has a deprecated constructor in %s on line %d testClass::testClass (1) testClass::testClass (2) testClass::testClass (3) testClass::testClass (4) testClass::testClass (5)
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare