php-src/sapi/cgi/tests/skipif.inc
2020-02-03 22:52:20 +01:00

13 lines
169 B
PHP

<?php
if (substr(php_sapi_name(), 0, 3) == "cgi") {
exit;
}
include dirname(__FILE__)."/include.inc";
if (!get_cgi_path()) {
die("skip CGI not found");
}
?>