max_input_vars    256 ext/mbstring/mb_gpc.c 	if (n > (PG(max_input_vars) * 2)) {
max_input_vars    257 ext/mbstring/mb_gpc.c 		php_error_docref(NULL, E_WARNING, "Input variables exceeded %pd. To increase the limit change max_input_vars in php.ini.", PG(max_input_vars));
max_input_vars    543 main/main.c    	STD_PHP_INI_ENTRY("max_input_vars",			"1000",		PHP_INI_SYSTEM|PHP_INI_PERDIR,		OnUpdateLongGEZero,	max_input_vars,						php_core_globals,	core_globals)
max_input_vars    155 main/php_globals.h 	zend_long max_input_vars;
max_input_vars    294 main/php_variables.c 	uint64_t max_vars = PG(max_input_vars);
max_input_vars    451 main/php_variables.c 		if (++count > PG(max_input_vars)) {
max_input_vars    452 main/php_variables.c 			php_error_docref(NULL, E_WARNING, "Input variables exceeded " ZEND_LONG_FMT ". To increase the limit change max_input_vars in php.ini.", PG(max_input_vars));
max_input_vars    879 main/rfc1867.c 				if (++count <= PG(max_input_vars) && sapi_module.input_filter(PARSE_POST, param, &value, value_len, &new_val_len)) {
max_input_vars    898 main/rfc1867.c 					if (count == PG(max_input_vars) + 1) {
max_input_vars    899 main/rfc1867.c 						php_error_docref(NULL, E_WARNING, "Input variables exceeded " ZEND_LONG_FMT ". To increase the limit change max_input_vars in php.ini.", PG(max_input_vars));