1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 16:38:25 +02:00
Files
archived-php-src/ext/standard/tests/general_functions/getopt_007.phpt
T

16 lines
229 B
PHP

--TEST--
getopt#007 (optind #2)
--ARGS--
-a 1 -b 2 -- -c nope test
--INI--
register_argc_argv=On
variables_order=GPS
--FILE--
<?php
$optind = null;
getopt('a:b:', [], $optind);
var_dump($optind);
?>
--EXPECT--
int(6)