skipif.inc 169 B

12345678910111213
  1. <?php
  2. if (substr(php_sapi_name(), 0, 3) == "cgi") {
  3. exit;
  4. }
  5. include dirname(__FILE__)."/include.inc";
  6. if (!get_cgi_path()) {
  7. die("skip CGI not found");
  8. }
  9. ?>