1
0
mirror of https://github.com/php/php-src.git synced 2026-04-02 21:52:36 +02:00

getopt() is currently not available on Windows

This commit is contained in:
Kai Schroeder
2003-02-09 13:23:50 +00:00
parent 11e81f89fd
commit f93b09b2db

View File

@@ -4,6 +4,9 @@ getopt
-v -h -d test -m 1234 -t -j
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) == 'WIN') {
die('skip getopt() is currently not available on Windows');
}
if (!ini_get('register_argc_argv')) {
die("skip this test needs register_argc_argv to be enabled");
}