3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

PHPで大量(21個以上)のファイルをアップロード

Posted at

PHP側のデフォルトの設定で、
1回の送信で送れるファイルの個数は20個までになっている。

送信可能な個数の変更はphp.ini,httpd.confからパラメータを渡す必要があるので、
.htaccess,PHPscriptでのみPHPの設定が変えることのできるサーバでは難しい。

php.ini,httpd.conf
// 最大ファイルアップロード数を30に設定する
max_file_uploads = 30;

// ----------------- 参考URL
・ ファイルアップロード - PHP.net
http://www.php.net/manual/ja/ini.core.php#ini.sect.file-uploads

・ PHP 設定変更できるの?できないの? - パソコンQ&A
http://kikky.net/pc/php_ini_set.html

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?