mirror of
https://github.com/php/php-src.git
synced 2026-04-24 16:38:25 +02:00
b27d91993d
This partly implements the deprecation of the `register_argc_argv` INI setting by updating the default value to ensure safe behavior when no INI file is loaded. The actual deprecation warning will follow separately. RFC: https://wiki.php.net/rfc/deprecations_php_8_5#deprecate_the_register_argc_argv_ini_directive
27 lines
432 B
PHP
27 lines
432 B
PHP
--TEST--
|
|
Testing $argc and $argv handling (GET)
|
|
--SKIPIF--
|
|
<?php
|
|
if(substr(PHP_OS, 0, 3) == 'WIN') die("skip on windows: --INI-- is ignored due to 4b9cd27ff5c0177dcb160caeae1ea79e761ada58");
|
|
?>
|
|
--INI--
|
|
register_argc_argv=1
|
|
--GET--
|
|
ab+cd+ef+123+test
|
|
--FILE--
|
|
<?php
|
|
$argc = $_SERVER['argc'];
|
|
$argv = $_SERVER['argv'];
|
|
|
|
for ($i=0; $i<$argc; $i++) {
|
|
echo "$i: ".$argv[$i]."\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
0: ab
|
|
1: cd
|
|
2: ef
|
|
3: 123
|
|
4: test
|