php-src/sapi/cgi/tests/skipif.inc

14 lines
163 B
PHP
Raw Normal View History

2007-04-17 19:48:22 +00:00
<?php
if (substr(php_sapi_name(), 0, 3) == "cgi") {
exit;
}
include dirname(__FILE__)."/include.inc";
if (!get_cgi_path()) {
die("skip CGI not found");
}
?>