mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
15 lines
220 B
PHP
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)
|