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/ext/opcache/tests/ |
Current File : //proc/self/root/usr/local/src/php72/php-7.2.12/php-7.2.12/ext/opcache/tests/bug73789.phpt |
--TEST-- Bug #73789 (Strange behavior of class constants in switch/case block) --FILE-- <?php class Lexer { const T_NONE = 1; const T_STRING = 2; const T_DOT = 8; public function getType($value): int { $type = self::T_NONE; switch (true) { case ctype_alpha($value[0]): $name = 'Lexer::T_' . strtoupper($value); $type = constant($name); if ($type > 100) { return $type; } return self::T_STRING; case $value === '.': return self::T_DOT; default: } return $type; } } var_dump((new Lexer())->getType("dot")); --EXPECT-- int(2)
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare