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 |
UriFactoryInterface.php
01 <?php
02
03 namespace OAuth\Common\Http\Uri;
04
05 /**
06 * Factory interface for uniform resource indicators
07 */
08 interface UriFactoryInterface
09 {
10 /**
11 * Factory method to build a URI from a super-global $_SERVER array.
12 *
13 * @param array $_server
14 *
15 * @return UriInterface
16 */
17 public function createFromSuperGlobalArray(array $_server);
18
19 /**
20 * Creates a URI from an absolute URI
21 *
22 * @param string $absoluteUri
23 *
24 * @return UriInterface
25 */
26 public function createFromAbsolute($absoluteUri);
27
28 /**
29 * Factory method to build a URI from parts
30 *
31 * @param string $scheme
32 * @param string $userInfo
33 * @param string $host
34 * @param string $port
35 * @param string $path
36 * @param string $query
37 * @param string $fragment
38 *
39 * @return UriInterface
40 */
41 public function createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragment = '');
42 }
43