1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/sapi/cgi/tests/skipif.inc
2015-09-30 11:13:27 +02:00

14 lines
163 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");
}
?>