41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
PHP
--TEST--
|
|
curl_copy_handle() allows to post CURLFile multiple times
|
|
--EXTENSIONS--
|
|
curl
|
|
--FILE--
|
|
<?php
|
|
include 'server.inc';
|
|
$host = curl_cli_server_start();
|
|
|
|
$ch1 = curl_init();
|
|
curl_setopt($ch1, CURLOPT_SAFE_UPLOAD, 1);
|
|
curl_setopt($ch1, CURLOPT_URL, "{$host}/get.php?test=file");
|
|
curl_setopt($ch1, CURLOPT_RETURNTRANSFER, 1);
|
|
|
|
$filename = __DIR__ . '/curl_copy_handle_variation3.txt';
|
|
file_put_contents($filename, "Test.");
|
|
$file = curl_file_create($filename);
|
|
$params = array('file' => $file);
|
|
var_dump(curl_setopt($ch1, CURLOPT_POSTFIELDS, $params));
|
|
|
|
$ch2 = curl_copy_handle($ch1);
|
|
|
|
var_dump(curl_exec($ch1));
|
|
curl_close($ch1);
|
|
|
|
var_dump(curl_exec($ch2));
|
|
curl_close($ch2);
|
|
?>
|
|
--EXPECTF--
|
|
bool(true)
|
|
string(%d) "curl_copy_handle_variation3.txt|application/octet-stream|5"
|
|
|
|
Deprecated: Function curl_close() is deprecated since 8.5, as it has no effect since PHP 8.0 in %s on line %d
|
|
string(%d) "curl_copy_handle_variation3.txt|application/octet-stream|5"
|
|
|
|
Deprecated: Function curl_close() is deprecated since 8.5, as it has no effect since PHP 8.0 in %s on line %d
|
|
--CLEAN--
|
|
<?php
|
|
@unlink(__DIR__ . '/curl_copy_handle_variation3.txt');
|
|
?>
|