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 |
Normalizer.php
01 <?php
02
03 class Normalizer extends Symfony\Polyfill\Intl\Normalizer\Normalizer
04 {
05 /**
06 * @deprecated since ICU 56 and removed in PHP 8
07 */
08 public const NONE = 2;
09 public const FORM_D = 4;
10 public const FORM_KD = 8;
11 public const FORM_C = 16;
12 public const FORM_KC = 32;
13 public const NFD = 4;
14 public const NFKD = 8;
15 public const NFC = 16;
16 public const NFKC = 32;
17 }
18