我有这种情况,我在使用Python将文件上传到服务器。这是我的python脚本。这使用apache2认证的请求库
def Upload(self):
Url = 'http://x.php'
Payload = {
'Location' : self.Location,
'Version' : self.Version,
'Variant' : self.Variant,
}
#employing requests
File = {'file' : ('TestFile', open(self.Location, 'rb'))}
response = requests.post(Url, files=File, data=Payload)
数据由在ubuntu机器上运行的apache2服务器接收。我想知道如何从PHP代码访问发送的文件并将其保存在所需的位置。能否请您建议实现这一目标的方法。
有没有像HTTP这样的方式,我可以指定它就是这样,我可以使用$ _FILE [“TestFile”]
进行访问请帮忙 -sreekanth