CURLStringFile::__construct

(PHP 8 >= 8.1.0)

CURLStringFile::__constructErstellt ein CURLStringFile-Objekt

Beschreibung

public CURLStringFile::__construct(string $data, string $postname, string $mime = "application/octet-stream")

Erstellt ein CURLStringFile-Objekt, welches zum Upload einer Datei via CURLOPT_POSTFIELDS verwendet wird.

Parameter-Liste

data

Die hochzuladenden Daten.

postname

Der in den Upload-Daten zu verwendende Dateiname.

mime

Der MIME-Typ der Datei (Vorgabe ist application/octet-stream).

Beispiele

Beispiel #1 CURLStringFile::__construct()-Beispiel

<?php
/* http://example.com/upload.php:
<?php
var_dump($_FILES);
var_dump(file_get_contents($_FILES['test_string']['tmp_name']));
?>
*/

// Erstellt ein cURL-Handle
$ch = curl_init('http://example.com/upload.php');

// Erstellt ein CURLStringFile-Objekt
$cstringfile = new CURLStringFile('test upload contents','test.txt','text/plain');

// POST-Daten hinzufügen
$data = array('test_string' => $cstringfile);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);

// Das Handle ausführen
curl_exec($ch);
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

array(1) {
  ["test_string"]=>
  array(5) {
    ["name"]=>
    string(8) "test.txt"
    ["type"]=>
    string(10) "text/plain"
    ["tmp_name"]=>
    string(14) "/tmp/phpTtaoCz"
    ["error"]=>
    int(0)
    ["size"]=>
    int(20)
  }
}
string(20) "test upload contents"

Siehe auch

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top