php / 8.1.5 / class.curlstringfile.html /

The CURLStringFile class

Introduction

(PHP 8 >= 8.1.0)

CURLStringFile makes it possible to upload a file directly from a variable. This is similar to CURLFile, but works with the contents of the file, not filename. This class or CURLFile should be used to upload the contents of the file with CURLOPT_POSTFIELDS.

Class synopsis

class CURLStringFile {
/* Properties */
public string $data;
public string $postname;
public string $mime;
/* Methods */
public __construct( string $data, string $postname, string $mime = "application/octet-stream")
}

Properties

data

The contents to be uploaded.

postname

The name of the file to be used in the upload data.

mime

MIME type of the file (default is application/octet-stream).

See Also

Table of Contents

© 1997–2021 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/class.curlstringfile.php