c#将图像发送到php脚本,php脚本循环遍历$ _FILES数组

时间:2010-09-12 20:06:27

标签: c# php .net webclient

好的,我有上传图片的代码

WebClient client = new WebClient();
client.Headers.Add("Content-Type", "application/x-www-form-urlencoded");
client.UploadFile("Address/upload.php", "POST", @"C:\Test\test.jpg");

例如,文件名将是动态的,可以是任何内容,所以我如何将图像发送到服务器,然后基本上通过PHP脚本保存它

1 个答案:

答案 0 :(得分:0)

我相信这就是您所寻找的:Saving image from PHP URL

请参阅接受的答案。