1
0
mirror of https://github.com/php/php-src.git synced 2026-04-17 13:01:02 +02:00
Files
archived-php-src/ext/standard/tests/general_functions/getopt_009.phpt
2016-07-08 16:53:24 +02:00

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)