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

UriFactoryInterface.php

Zuletzt modifiziert: 02.04.2025, 15:04 - Dateigröße: 935.00 Bytes


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       * @return UriInterface
14       */
15      public function createFromSuperGlobalArray(array $_server);
16   
17      /**
18       * Creates a URI from an absolute URI.
19       *
20       * @param string $absoluteUri
21       *
22       * @return UriInterface
23       */
24      public function createFromAbsolute($absoluteUri);
25   
26      /**
27       * Factory method to build a URI from parts.
28       *
29       * @param string $scheme
30       * @param string $userInfo
31       * @param string $host
32       * @param string $port
33       * @param string $path
34       * @param string $query
35       * @param string $fragment
36       *
37       * @return UriInterface
38       */
39      public function createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragment = '');
40  }
41