1--TEST-- 2import_request_variables() test (numeric keys) 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("gpc", "_"); 17var_dump($_1, $_2, $_3, $_4, $_5); 18 19echo "Done\n"; 20?> 21--EXPECTF-- 22string(2) "10" 23string(2) "11" 24string(2) "12" 25string(2) "13" 26string(2) "14" 27Done 28