1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 03:32:20 +02:00

getopt() is currently not available on Windows

This commit is contained in:
Kai Schroeder
2003-02-09 13:23:10 +00:00
parent f1f5996447
commit ddd2ce19ec

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");
}