gpt4 book ai didi

PHP:如何使用 cURL 转发 $_FILES

转载 作者:可可西里 更新时间:2023-11-01 17:15:42 25 4
gpt4 key购买 nike

我正在尝试使用 cURL 转发来 self 正在开发的 Web 应用程序中的表单的 http 请求。本质上,我需要在不同的服务器上提交相同的表单两次,对于第二台服务器,我为发布数据添加了一些安全措施。

我可以很好地接收第二种形式的 $_POST 信息,但是我的 $_FILES 遇到了很大的问题 - 我已经尝试将两者分开,所以有一个单独的帖子和文件数据请求,但仍然没有成功。

这可能吗?

最佳答案

<?php
$filename = '/foo/bar';
$postargs = array(
'foo' =>'bar', //normal postfield
'fileentry' => '@'.$filename //be sure to give it as an absolute path!, $_FILES['fileentry']['tmp_name'] usually has this
);

$ch = curl_init();
//other stuff with curl
curl_setopt($ch,CURL_POSTFIELDS, $postargs);//give as array for proper encoding.
curl_exec();
?>

关于PHP:如何使用 cURL 转发 $_FILES,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2994161/

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