mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
15 lines
213 B
PHP
15 lines
213 B
PHP
--TEST--
|
|
getopt#008 (optind #3)
|
|
--ARGS--
|
|
-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(5)
|