php-8.0.30-src/ext/standard/tests/general_functions/getopt_009.phpt

16 lines
220 B
PHP

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