我的目标是,在点击表单提交按钮后,将附件从表单上传到服务器并显示发生的进度条,然后提交表单(即邮寄邮件)。
upload_form.php:
<form action="email_message.php" method="post" enctype="multipart/form-data" name="fileform" id="fileform">
<input type="hidden" name="MAX_FILE_SIZE" value="50000000"/>
<input type="hidden" name="<?php echo ini_get("session.upload_progress.name"); ?>" value="uploads"/>
<label for="userfile1">Upload a file:</label>
<input type="file" name="userfile1" id="userfile1" class="userfile"/>
<input id="submit_btn" type="submit" value="Send Message"/>
</form>
在同一页面中,我运行以下代码以防止表单被执行并发送请求以从表单上传所有文件。
$(document).ready(function(){
$("#fileform").submit(function(e){
e.preventDefault();
var self = this;
var formData = new FormData(document.getElementById("fileform"));
var upload_req = $.ajax({
url: "./upload_multiple_files.php",
type: "POST",
data: formData,
processData: false,
contentType: false
});
upload_req.done(function(data){
alert("Uploading complete!");
});
});
});
upload_multiple_files.php:
<?php
session_start();
foreach ($_FILES as $k => $v){
// code to deal with file errors
if (is_uploaded_file($v['tmp_name'])){
// code to rename file
echo "<p>The file was successfully uploaded.</p>";
}else{
echo "<p>The file was not uploaded.</p>";
}
}
?>
所有这些都有效:文件全部上传到服务器。
我遇到的问题是整合PHP上传会话进度(http://php.net/manual/en/session.upload-progress.php)。
我知道我需要使用session.upload_progress.name
和$_POST
数组来获取文件上传信息,但我不确定在哪里放置它。我想创建一个带间隔的ajax调用,以定期获取上传进度以显示在我的表单页面上。但是,当我创建新页面时,会话信息为空。这是我尝试过的页面示例:
get_progress.php:
<?php
session_start();
// $key is a combination of session.upload_progress.prefix and session.upload_progress.name
$results = array("content_length" => $_SESSION[$key]['content_length'],
"bytes_processed" => $_SESSION[$key]['bytes_processed']
);
echo json_encode($results);
?>
我检查了来自upload_form.php
和get_progress.php
的会话ID,它们是相同的。
$_SESSION
中get_progress.php
为空的任何原因?我想我错过了一些简单但我无法理解的事情。
答案 0 :(得分:0)
@Perry你的回答是对的,php.ini中没有启用session.upload_progress.enabled
。感谢。