diff options
| author | Ilia Alshanetsky <iliaa@php.net> | 2007-06-03 16:19:14 +0000 |
|---|---|---|
| committer | Ilia Alshanetsky <iliaa@php.net> | 2007-06-03 16:19:14 +0000 |
| commit | a8be5f419d8b724184d258bc8f9ccf4977edcd06 (patch) | |
| tree | a7ebb8a622df2b3b36c5fb4624b1356fada49688 /tests | |
| parent | 79e3c883525b864d8d73d0ce77e1739f588ac100 (diff) | |
| download | php-git-a8be5f419d8b724184d258bc8f9ccf4977edcd06.tar.gz | |
Improved fix for MOPB-02-2007
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/basic/027.phpt | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/basic/027.phpt b/tests/basic/027.phpt new file mode 100644 index 0000000000..18b17bce9b --- /dev/null +++ b/tests/basic/027.phpt @@ -0,0 +1,35 @@ +--TEST-- +Handling of max_input_nesting_level being reached +--INI-- +magic_quotes_gpc=0 +always_populate_raw_post_data=0 +display_errors=0 +max_input_nesting_level=10 +track_errors=1 +log_errors=0 +--SKIPIF-- +<?php if (php_sapi_name()=='cli') echo 'skip'; ?> +--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(124) "Unknown: Input variable nesting level more than allowed 10 (change max_input_nesting_level in php.ini to increase the limit)" |
