使用 PHP curl 将文件发送到 WebDav 服务器

Sending file to WebDav server using PHP curl

我正在尝试使用 curl 将文件发送到 webDav 服务器。我的代码工作正常,但我面临的问题是 curl -T 正在删除网络中的所有现有文件。是否有任何其他标志只能发送一个文件并且不接触网络中的其他文件。

exec('curl -T "' . $src . $file . '" ' . $full_url . str_replace(' ', '', $upDir) . str_replace(' ', '', $file));

提前致谢

您可以使用此代码通过 curl 发送文件。确保使用 CURLFile class.

$file = $request->file('file');

    $file_name = $file->getClientOriginalName();
    $file_ext = $file->getClientOriginalExtension();
    $file_path = $file->getRealPath();

    $fileName = request('fileName');

    $curl_file =  new CURLFile($file_path, $file_ext, $file_name);
    $post_data = array(
      'files' => $curl_file,
      'name' => $fileName
    );

    $target_url = env('URL', null) . "/library";

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $target_url);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array(
      'Content_Type: application/json',
      'Authorization: Bearer ' .  $_SESSION["token"],
    ));
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

    curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);

    $response = curl_exec($ch);
    curl_close($ch);

    $contents = $response;
    $content = json_decode($contents, true);
    
    return response()->json(["status" => "ok"]);