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.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

bootstrap.php

Zuletzt modifiziert: 02.04.2025, 15:02 - Dateigröße: 1.56 KiB


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\Ctype as p;
13   
14  if (\PHP_VERSION_ID >= 80000) {
15      return require __DIR__.'/bootstrap80.php';
16  }
17   
18  if (!function_exists('ctype_alnum')) {
19      function ctype_alnum($text) { return p\Ctype::ctype_alnum($text); }
20  }
21  if (!function_exists('ctype_alpha')) {
22      function ctype_alpha($text) { return p\Ctype::ctype_alpha($text); }
23  }
24  if (!function_exists('ctype_cntrl')) {
25      function ctype_cntrl($text) { return p\Ctype::ctype_cntrl($text); }
26  }
27  if (!function_exists('ctype_digit')) {
28      function ctype_digit($text) { return p\Ctype::ctype_digit($text); }
29  }
30  if (!function_exists('ctype_graph')) {
31      function ctype_graph($text) { return p\Ctype::ctype_graph($text); }
32  }
33  if (!function_exists('ctype_lower')) {
34      function ctype_lower($text) { return p\Ctype::ctype_lower($text); }
35  }
36  if (!function_exists('ctype_print')) {
37      function ctype_print($text) { return p\Ctype::ctype_print($text); }
38  }
39  if (!function_exists('ctype_punct')) {
40      function ctype_punct($text) { return p\Ctype::ctype_punct($text); }
41  }
42  if (!function_exists('ctype_space')) {
43      function ctype_space($text) { return p\Ctype::ctype_space($text); }
44  }
45  if (!function_exists('ctype_upper')) {
46      function ctype_upper($text) { return p\Ctype::ctype_upper($text); }
47  }
48  if (!function_exists('ctype_xdigit')) {
49      function ctype_xdigit($text) { return p\Ctype::ctype_xdigit($text); }
50  }
51