Размер файла в нескольких вложениях - PullRequest
0 голосов
/ 28 марта 2012

Я отправляю несколько вложений с сообщением электронной почты, теперь я хочу проверить расширение и размер вложенного файла, для которого я использую код:

foreach(array_keys($_FILES['attachment']['name']) as $key) {

  $file=$_FILES['attachment'];
  $filesize = (filesize($file) * .0009765625) * .0009765625;

  echo $filesize;
  if ($FileSize > 100) {
    echo "<script type='text/javascript'>parent.document.getElementById('sizeerrormessage').style.display = 'inline';</script>";
  }
  $source = $_FILES['attachment']['tmp_name'][$key];
  $filename = $_FILES['attachment']['name'][$key];

  $mail->AddAttachment($source, $filename);
}

Я выдаю ошибку, что для расчетаРазмер файла и расширение задается массив, требуется строка.

Для нескольких вложений вложение [] является массивом. Как теперь проверить размер файла и расширение типа массива Код формы:

<input type="file" name="attachment[]" id="attachment" size="30"
onchange="document.getElementById('moreUploadsLink').style.display = 'block';" />
<div id="moreUploads"></div>
<div id="sizeerrormessage" style="display:none;margin-left:30px">
 <font color=#990000 size=1>File exceeded maximum allowed limit of 100 Kb</font>
 </div>
 <div id="typeerrormessage" style="display:none;margin-left:30px">
 <font color=#990000 size=1>Only png, jpg and gif are allowed extensions.</font>
 </div>
 <div id="moreUploadsLink" style="display:none;"><a
  href="javascript:addFileInput();">Attach another File</a></div>

И javascript

<script type="text/javascript">
 var upload_number = 1;
 var attachmentlimit = 5;
 function addFileInput() {

  var d = document.createElement("div");
  var file = document.createElement("input");
  file.setAttribute("type", "file");
  file.setAttribute("name", "attachment[]");
  /*    file.setAttribute("name", "attachment"+upload_number);*/
  d.appendChild(file);
    document.getElementById("moreUploads").appendChild(d);
  upload_number++;
   if(upload_number == attachmentlimit) {
  document.getElementById('moreUploadsLink').style.display='none';
   }

  }
  </script>

1 Ответ

1 голос
/ 29 марта 2012

Вот как вы получаете размер файла и расширение, используя ваш скрипт

$filesize = $_FILES['attachment']['size'][$key];
$extention = pathinfo ($_FILES['attachment']['name'][$key] ,PATHINFO_EXTENSION );

Для получения информации см.

http://php.net/manual/en/reserved.variables.files.php

http://php.net/manual/en/function.pathinfo.php

Спасибо

:)

...