mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
* main: Ignore `register_argc_argv` when `SG(request_info).argc` is available * sapi: Remove hardcoded `register_argc_argv` for CLI SAPIs This INI is ignored since the previous commit, which makes the hardcoded setting obsolete. * main: Deprecate deriving $_SERVER['argc'] and $_SERVER['argv'] from the query string RFC: https://wiki.php.net/rfc/deprecations_php_8_5#deprecate_the_register_argc_argv_ini_directive * main: Adjust deprecation message for `register_argc_argv` * NEWS/UPGRADING
23 lines
470 B
PHP
23 lines
470 B
PHP
--TEST--
|
|
Testing $argc and $argv handling (GET, register_argc_argv=0)
|
|
--SKIPIF--
|
|
<?php
|
|
if(substr(PHP_OS, 0, 3) == 'WIN') die("skip on windows: --INI-- is ignored due to 4b9cd27ff5c0177dcb160caeae1ea79e761ada58");
|
|
?>
|
|
--INI--
|
|
register_argc_argv=0
|
|
--GET--
|
|
ab+cd+ef+123+test
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump($_SERVER['argc'], $_SERVER['argv']);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Undefined array key "argc" in %s on line %d
|
|
|
|
Warning: Undefined array key "argv" in %s on line %d
|
|
NULL
|
|
NULL
|