File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / tests / basic / 027.phpt
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue May 29 12:34:34 2012 UTC (12 years, 1 month ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, HEAD
php 5.4.3+patches

--TEST--
Handling of max_input_nesting_level being reached
--INI--
always_populate_raw_post_data=0
display_errors=0
max_input_nesting_level=10
max_input_vars=1000
track_errors=1
log_errors=0
--POST--
a=1&b=ZYX&c[][][][][][][][][][][][][][][][][][][][][][]=123&d=123&e[][]][]=3
--FILE--
<?php
var_dump($_POST, $php_errormsg);
?>
--EXPECT--
array(4) {
  ["a"]=>
  string(1) "1"
  ["b"]=>
  string(3) "ZYX"
  ["d"]=>
  string(3) "123"
  ["e"]=>
  array(1) {
    [0]=>
    array(1) {
      [0]=>
      string(1) "3"
    }
  }
}
string(115) "Unknown: Input variable nesting level exceeded 10. To increase the limit change max_input_nesting_level in php.ini."

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>