xref: /PHP-7.4/sapi/cgi/tests/skipif.inc (revision 353d996c)
1<?php
2
3if (substr(php_sapi_name(), 0, 3) == "cgi") {
4	exit;
5}
6
7include dirname(__FILE__)."/include.inc";
8
9if (!get_cgi_path()) {
10	die("skip CGI not found");
11}
12
13?>
14