--TEST--
import_request_variables() tests
--SKIPIF--
-<?php if(PHP_VERSION_ID < 503099){ die('Not needed anymore without register_globals'); } ?>
+<?php if(PHP_VERSION_ID < 503099){ die('skip not needed anymore without register_globals'); } ?>
--GET--
a=1&b=heh&c=3&d[]=5&GLOBALS=test&1=hm
--POST--
--TEST--
import_request_variables() test (overwrite super-globals)
--SKIPIF--
-<?php if(PHP_VERSION_ID < 503099){ die('Not needed anymore without register_globals'); } ?>
+<?php if(PHP_VERSION_ID < 503099){ die('skip not needed anymore without register_globals'); } ?>
--GET--
GET=0&POST=1&COOKIE=2&FILES=3&REQUEST=4
--POST--
--TEST--
import_request_variables() test (numeric keys)
--SKIPIF--
-<?php if(PHP_VERSION_ID < 503099){ die('Not needed anymore without register_globals'); } ?>
+<?php if(PHP_VERSION_ID < 503099){ die('skip not needed anymore without register_globals'); } ?>
--GET--
1=0&2=1&3=2&4=3&5=4
--POST--
--TEST--
import_request_variables() test (numeric keys, different order)
--SKIPIF--
-<?php if(PHP_VERSION_ID < 503099){ die('Not needed anymore without register_globals'); } ?>
+<?php if(PHP_VERSION_ID < 503099){ die('skip not needed anymore without register_globals'); } ?>
--GET--
1=0&2=1&3=2&4=3&5=4
--POST--