php-src/ext/standard/tests/general_functions/getopt.phpt

38 lines
469 B
Plaintext
Raw Normal View History

2002-12-11 17:38:28 +00:00
--TEST--
getopt
--ARGS--
-v -h -d test -m 1234 -t -j
--INI--
register_argc_argv=On
variables_order=GPS
2002-12-11 17:38:28 +00:00
--FILE--
<?php
var_dump(getopt("d:m:j:vht"));
?>
--EXPECT--
array(5) {
["v"]=>
bool(false)
["h"]=>
bool(false)
["d"]=>
string(4) "test"
["m"]=>
string(4) "1234"
["t"]=>
bool(false)
}
--UEXPECT--
array(5) {
[u"v"]=>
bool(false)
[u"h"]=>
bool(false)
[u"d"]=>
unicode(4) "test"
[u"m"]=>
unicode(4) "1234"
[u"t"]=>
bool(false)
}