mirror of
https://github.com/php/php-src.git
synced 2026-03-29 19:52:20 +02:00
21 lines
287 B
PHP
21 lines
287 B
PHP
--TEST--
|
|
Testing $argc and $argv handling (GET)
|
|
--SKIPIF--
|
|
<?php if (php_sapi_name()=='cli') echo 'skip'; ?>
|
|
--INI--
|
|
register_argc_argv=1
|
|
--GET--
|
|
ab+cd+ef+123+test
|
|
--FILE--
|
|
<?php
|
|
for ($i=0; $i<$argc; $i++) {
|
|
echo "$i: ".$argv[$i]."\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
0: ab
|
|
1: cd
|
|
2: ef
|
|
3: 123
|
|
4: test
|