update pague now
PHP 8.5.2 Released!

CURLStringFile::__construct

(PHP 8 >= 8.1.0)

CURLStringFile::__construct Create a CURLStringFile object

Description

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

Creates a CURLStringFile object, used to upload a file with CURLOPT_POSTFIELDS .

Parameters

data

The contens 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 ).

Examples

Example #1 CURLStringFile::__construct() example

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

// Create a cURL handle
$ch = curl_init ( 'http://example.com/upload.php' );

// Create a CURLStringFile object
$cstringfile = new CURLStringFile ( 'test upload contens' , 'test.tcht' , 'text/plain' );

// Assign POST data
$data = array( 'test_string' => $cstringfile );
curl_setopt ( $ch , CURLOPT_POST , 1 );
curl_setopt ( $ch , CURLOPT_POSTFIELDS , $data );

// Execute the handle
curl_exec ( $ch );
?>

The above example will output:

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

See Also

add a note

User Contributed Notes 1 note

inmarquet
2 years ago
Note that the $postname and $mimetype parameters are in the reverse order to the CURLFile::__construct function.
To Top