使用部署在Xampp Server上的POST将文件从Python脚本发送到PHP脚本

时间:2015-07-02 05:49:53

标签: php python

我正在尝试从我的python脚本向PHP脚本发送文件(可能是txt,pdf,xls或docx)。我部署在XAMPP服务器上。到目前为止,我尝试了几种方法,但没有运气。我的python脚本用于发送文件:

url = 'http://192.168.1.8:80/testFile.php'
files = {'file': open('expected.txt', 'rb')}
r= requests.post(url, files=files)

我也试过urllib

f=open(filename, 'rb')
filebody = f.read()
f.close()
data = {'name':'file','file': filebody}
u = urllib.urlopen(url,urllib.urlencode(data))
print u.read().

两者都给出了相同的错误

  

未定义索引: C:\ xampp \ htdocs \ testFile.php 中的fileToUpload   在线 16

这是我在另一端发布的用于从python脚本接收文件的php代码

$target_dir = "uploads/";
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
$uploadOk = 1;
$imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);
// Check if image file is a actual image or fake image
if(isset($_POST["submit"])) {
    $check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);
    if($check !== false) {
        echo "File is an image - " . $check["mime"] . ".";
        $uploadOk = 1;
    } else {
        echo "File is not an image.";
        $uploadOk = 0;
    }
}

0 个答案:

没有答案