1--TEST--
2import_request_variables() test (numeric keys, different order)
3--SKIPIF--
4<?php if(PHP_VERSION_ID >= 50399){ die('skip not needed anymore without register_globals'); } ?>
5--GET--
61=0&2=1&3=2&4=3&5=4
7--POST--
81=5&2=6&3=7&4=8&5=9
9--COOKIE--
101=10;2=11;3=12;4=13;5=14
11--INI--
12variables_order=CGP
13--FILE--
14<?php
15
16import_request_variables("gcp", "_");
17var_dump($_1, $_2, $_3, $_4, $_5);
18
19echo "Done\n";
20?>
21--EXPECTF--
22string(1) "5"
23string(1) "6"
24string(1) "7"
25string(1) "8"
26string(1) "9"
27Done
28