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

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

PostFileInterface.php

Zuletzt modifiziert: 09.10.2024, 12:57 - Dateigröße: 772.00 Bytes


01  <?php
02  namespace GuzzleHttp\Post;
03   
04  use GuzzleHttp\Stream\StreamInterface;
05   
06  /**
07   * Post file upload interface
08   */
09  interface PostFileInterface
10  {
11      /**
12       * Get the name of the form field
13       *
14       * @return string
15       */
16      public function getName();
17   
18      /**
19       * Get the full path to the file
20       *
21       * @return string
22       */
23      public function getFilename();
24   
25      /**
26       * Get the content
27       *
28       * @return StreamInterface
29       */
30      public function getContent();
31   
32      /**
33       * Gets all POST file headers.
34       *
35       * The keys represent the header name as it will be sent over the wire, and
36       * each value is a string.
37       *
38       * @return array Returns an associative array of the file's headers.
39       */
40      public function getHeaders();
41  }
42