<?php
$filePath = 'path/to/your/file.jpg';
$fileField = 'file'; // 表单中文件字段的名字
$fileData = [
$fileField => new \CURLFile($filePath)
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://example.com/upload.php');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $fileData);
$response = curl_exec($ch);
if ($response === false) {
echo 'cURL 错误: ' . curl_error($ch);
} else {
echo '文件上传成功!';
}
curl_close($ch);
?>
发表评论 取消回复