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 : /proc/self/root/usr/local/src/php72/php-7.2.12/php-7.2.12/tests/classes/ |
Current File : //proc/self/root/usr/local/src/php72/php-7.2.12/php-7.2.12/tests/classes/ctor_dtor.phpt |
--TEST-- ZE2 The new constructor/destructor is called --FILE-- <?php class early { function __construct() { echo __CLASS__ . "::" . __FUNCTION__ . "\n"; } function __destruct() { echo __CLASS__ . "::" . __FUNCTION__ . "\n"; } } class late { function __construct() { echo __CLASS__ . "::" . __FUNCTION__ . "\n"; } function __destruct() { echo __CLASS__ . "::" . __FUNCTION__ . "\n"; } } $t = new early(); $t->__construct(); unset($t); $t = new late(); //unset($t); delay to end of script echo "Done\n"; ?> --EXPECTF-- early::__construct early::__construct early::__destruct late::__construct Done late::__destruct
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare