我的网站有点问题。我正在为我的一个朋友建立一个网站,让她可以在上面上传她的图画。由于 XMLHttpRequest 对象的 .send() 方法,我使用异步上传。这是我的 JS 脚本:
var f = file;
var name = f.name;
var filesize = f.size;
xhr.addEventListener("load" , function(e){
location.reload();
});
xhr.open("post", 'import.php', true);
xhr.setRequestHeader('content-type', 'multipart/form-data');
xhr.setRequestHeader('type', f.type);
xhr.setRequestHeader('filename', name);
xhr.setRequestHeader('path', '<?php echo $path ?>');
xhr.send(f);
这是我保存上传文件的 PHP 页面:
extract($_SERVER);
$file = $HTTP_FILENAME;
$newPath = $HTTP_PATH;
$extension = explode('.',$file);
$extension = $extension[1];
if($extension == 'jpg' || $extension == 'zip'){
exec('cd '.IMG_ROOT);
$handle = fopen($newPath.$file, "w+");
/*
Adding line after line the source file datas in the destination file
*/
// Get the uploaded file
$uploadedFile = fopen("php://input", "r+");
if($uploadedFile)
{
while ($buffer = fgets($uploadedFile))
{
fwrite($handle, $buffer);
}
}
fclose($handle);
if($extension == 'zip'){
$unzip = exec('which unzip');
exec($unzip.' '.$newPath.$file);
$rm = exec('which rm');
exec('rm '.$newPath.$file);
}
}
我的问题是,当我在 localhost 但不是在线测试它时,它工作得非常好......似乎该文件从未发送过......谁能告诉我我是否做错了什么?和/或将我重定向到解释 send() 方法和文件发送位置的内容?
谢谢