Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
bootstrap.php
01 <?php
02
03 /*
04 * This file is part of the Symfony package.
05 *
06 * (c) Fabien Potencier <fabien@symfony.com>
07 *
08 * For the full copyright and license information, please view the LICENSE
09 * file that was distributed with this source code.
10 */
11
12 use Symfony\Polyfill\Php72 as p;
13
14 if (\PHP_VERSION_ID >= 70200) {
15 return;
16 }
17
18 if (!defined('PHP_FLOAT_DIG')) {
19 define('PHP_FLOAT_DIG', 15);
20 }
21 if (!defined('PHP_FLOAT_EPSILON')) {
22 define('PHP_FLOAT_EPSILON', 2.2204460492503E-16);
23 }
24 if (!defined('PHP_FLOAT_MIN')) {
25 define('PHP_FLOAT_MIN', 2.2250738585072E-308);
26 }
27 if (!defined('PHP_FLOAT_MAX')) {
28 define('PHP_FLOAT_MAX', 1.7976931348623157E+308);
29 }
30 if (!defined('PHP_OS_FAMILY')) {
31 define('PHP_OS_FAMILY', p\Php72::php_os_family());
32 }
33
34 if ('\\' === \DIRECTORY_SEPARATOR && !function_exists('sapi_windows_vt100_support')) {
35 function sapi_windows_vt100_support($stream, $enable = null) { return p\Php72::sapi_windows_vt100_support($stream, $enable); }
36 }
37 if (!function_exists('stream_isatty')) {
38 function stream_isatty($stream) { return p\Php72::stream_isatty($stream); }
39 }
40 if (!function_exists('utf8_encode')) {
41 function utf8_encode($string) { return p\Php72::utf8_encode($string); }
42 }
43 if (!function_exists('utf8_decode')) {
44 function utf8_decode($string) { return p\Php72::utf8_decode($string); }
45 }
46 if (!function_exists('spl_object_id')) {
47 function spl_object_id($object) { return p\Php72::spl_object_id($object); }
48 }
49 if (!function_exists('mb_ord')) {
50 function mb_ord($string, $encoding = null) { return p\Php72::mb_ord($string, $encoding); }
51 }
52 if (!function_exists('mb_chr')) {
53 function mb_chr($codepoint, $encoding = null) { return p\Php72::mb_chr($codepoint, $encoding); }
54 }
55 if (!function_exists('mb_scrub')) {
56 function mb_scrub($string, $encoding = null) { $encoding = null === $encoding ? mb_internal_encoding() : $encoding; return mb_convert_encoding($string, $encoding, $encoding); }
57 }
58