<?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);
?>

点赞(0)

评论列表 共有 0 条评论

暂无评论
返回
顶部