Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
20mbmax_file_sizeに設定したが、特定のファイルでのみ4mbに制限したい場合、これをどのように達成しますか?
max_file_size
これを試して。
$default_max_file_size = ini_get('upload_max_filesize'); if ($is_special_file) { ini_set('upload_max_filesize', '4M'); // process your file // set it back to original value ini_set('upload_max_filesize', $default_max_file_size); }