我正在尝试为我的网站制作一个文件上传脚本,但我不知道如何从我的数组中获取name
和size
值(我对数组不是很好)。
我可以让它与上传单个文件一起工作,但我怎样才能让它循环呢?
我需要将它上传到我的服务器,并且它还在数据库中创建了一个条目。
这是我的代码...
HTML:
<form method="post" action="" enctype="multipart/form-data">
<textarea name="reply_message"></textarea>
<input name="attachments[]" type="file" size="20">
<input type="submit" name="ReplyForm" value="Send">
</form>
PHP:
if(!empty($_POST['reply_message']))
{
$reply_messages = $_POST['reply_message'];
$database->query('INSERT INTO email_response (email_id, message) VALUES (?, ?)', array($email_id, $reply_message));
if(isset($_FILES['attachments']))
{
require("upload.class.php");
$upload = new upload();
$last_email_response_id = $database->lastInsertId();
$attachments = $_FILES['attachments'];
foreach($attachments as $key => $value)
{
print_r($attachments);
$database->query('INSERT INTO email_attachments (email_id, reply_id, file_name, created) VALUES (?, ?, ?, NOW())', array($email_id, $last_email_response_id, $attachments['name'][0]));
$last_attachment_id = $database->lastInsertId();
$upload->set('attachments', ATTACHMENTS.$reply_result->sender_email.'/'.$email_id.'/'.$last_attachment_id);
$upload->upload();
}
}
}
数组(上传两个文件):
Array (
[name] => Array (
[0] => linkdownarrow.gif
[1] => overlay-button.png
)
[type] => Array (
[0] => image/gif
[1] => image/png
)
[tmp_name] => Array (
[0] => F:\xampp\tmp\phpFEC0.tmp
[1] => F:\xampp\tmp\phpFEC1.tmp
)
[error] => Array (
[0] => 0
[1] => 0
)
[size] => Array (
[0] => 63
[1] => 135
)
)