php-src/ext/standard/tests/general_functions/getopt_009.phpt
2016-07-08 16:53:24 +02:00

15 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)