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

7 lines
71 B
PHP

<?php
if (php_sapi_name() != "cli") {
die("skip CLI only");
}
?>