본문 바로가기

Linux

(PHP) PHP5.3 전송시 갯수제한 (max_input_vars)

 

PHP5.3에서 POST 전송시 전송갯수가 제한되었다. (default = 1000개)

일단 필요한 만큼 값을 올렸지만...아무래도 사용에 불편이 있을듯....

참고 : http://php.net/manual/en/info.configuration.php

 

 

Runtime Configuration

The behaviour of these functions is affected by settings in php.ini.

PHP Options/Inf Configuration Options
Name Default Changeable Changelog
assert.active "1" PHP_INI_ALL  
assert.bail "0" PHP_INI_ALL  
assert.warning "1" PHP_INI_ALL  
assert.callback NULL PHP_INI_ALL  
assert.quiet_eval "0" PHP_INI_ALL  
enable_dl "1" PHP_INI_SYSTEM This deprecated feature will certainly be removed in the future.
max_execution_time "30" PHP_INI_ALL  
max_input_time "-1" PHP_INI_PERDIR Available since PHP 4.3.0.
max_input_nesting_level "64" PHP_INI_PERDIR Available since PHP 4.4.8 and PHP 5.2.3.
max_input_vars 1000 PHP_INI_PERDIR Available since PHP 5.3.9.
magic_quotes_gpc "1" PHP_INI_PERDIR PHP_INI_ALL in PHP <= 4.2.3. Removed in PHP 5.4.0.
magic_quotes_runtime "0" PHP_INI_ALL Removed in PHP 5.4.0.
zend.enable_gc "1" PHP_INI_ALL Available since PHP 5.3.0.