summaryrefslogtreecommitdiff
path: root/ext/standard/tests/general_functions/getopt_006.phpt
blob: 875c4049216225bf0bef1e5b9f7c8942999aa17b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
getopt#006 (optind #1)
--ARGS--
-a 1 -b 2 test
--INI--
register_argc_argv=On
variables_order=GPS
--FILE--
<?php
    $optind = null;
    getopt('a:b:', [], $optind);
    var_dump($optind);
?>
--EXPECT--
int(5)