我有这种情况,我正在使用 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