Verzeichnisstruktur phpBB-3.2.0
- Veröffentlicht
- 06.01.2017
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 |
utf8_encode.php
01 <?php
02
03 /*
04 * Copyright (C) 2016 Nicolas Grekas - p@tchwork.com
05 *
06 * This library is free software; you can redistribute it and/or modify it
07 * under the terms of the (at your option):
08 * Apache License v2.0 (http://apache.org/licenses/LICENSE-2.0.txt), or
09 * GNU General Public License v2.0 (http://gnu.org/licenses/gpl-2.0.txt).
10 */
11
12 use Patchwork\PHP\Shim as s;
13
14 @trigger_error('You are using a fallback implementation of the xml extension. Installing the native one is highly recommended instead.', E_USER_DEPRECATED);
15
16 function utf8_encode($s) {return s\Xml::utf8_encode($s);}
17 function utf8_decode($s) {return s\Xml::utf8_decode($s);}
18