gpt4 book ai didi

php - Windows PHP cURL 上传不发布文件

转载 作者:可可西里 更新时间:2023-11-01 11:50:32 26 4
gpt4 key购买 nike

我在 XAMPP 5.6.8 上遇到 cURL 的特殊问题。使用下面的代码,我无法发送在 $tempPath 中指定的路径中存在的文件。我在想 cURL 库可能会与我以 c:\ 开头的路径混淆。

我的文件位于:C:\tempFolder\r_4878.tmp

在 linux 服务器上,使用完全相同的代码,这确实可以使用 /mnt/temp/。为什么会有差异?

这里可能出了什么问题?

上传代码

$post = array( 'file_name' => $reportID, 'file_contents'=>'@'.$tempPath.'' );

$return = true;

# set the url that we need to use to upload to each server
$url = "http://server.corp/uploadServer.php";

# curl the file to the remote server
$ch = curl_init( $url );
curl_setopt( $ch, CURLOPT_POST, true );
curl_setopt( $ch, CURLOPT_HEADER, false );
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt( $ch, CURLOPT_TIMEOUT, 240 );
curl_setopt( $ch, CURLOPT_POSTFIELDS, $post );
curl_setopt( $ch, CURLOPT_HTTPHEADER, array( 'Accept: application/json' ));

# get the servers respone and decode the json response
$result = json_decode( curl_exec( $ch ) );

$t = array( $url, $tempPath, file_exists( $tempPath ), $result->success, $post, $result );

echo "\r\n".print_r( $t, true )."\r\n\r\n";

curl_close( $ch );

远程服务器

$output['file_exists'] = file_exists( $_FILES["file_contents"]["tmp_name"] );
$output['file_path'] = $fileName.".txt";
$output['tmp_name'] = $_FILES["file_contents"]["tmp_name"];
$output['success'] = move_uploaded_file( $_FILES["file_contents"]["tmp_name"], $fileName.".txt" );

响应

Array
(
[0] => http://server.corp/uploadServer.php
[1] => C:\tempFolder\r_4878.tmp
[2] => 1
[3] =>
[4] => Array
(
[file_name] => UnitTest25-felix
[file_contents] => @C:\tempFolder\r_4878.tmp
)

[5] => stdClass Object
(
[file_name] => UnitTest25-felix
[file_exists] =>
[file_path] => UnitTest25-felix.txt
[tmp_name] =>
[success] =>
[generationTime] => 9.70363616943E-5
)

)

最佳答案

我认为您只是发布文件信息.. 实际数据并未发布。文件数据需要作为多部分发布。

要进行调试,您可能需要创建一个表单并在 Network Tab 中查看它是如何工作的。它将允许您具体查看使用浏览器时数据是如何发送的。一旦您看到,您将准确了解如何发布文件数据。

你应该看看Using curl to upload POST data with files

关于php - Windows PHP cURL 上传不发布文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31013395/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com