drupal_is_cli

7 bootstrap.inc drupal_is_cli()
8 bootstrap.inc drupal_is_cli()

Detects whether the current script is running in a command-line environment.

4 calls to drupal_is_cli()

File

includes/bootstrap.inc, line 3289
Functions that need to be loaded on every Drupal request.

Code

function drupal_is_cli() {
  return (!isset($_SERVER['SERVER_SOFTWARE']) && (php_sapi_name() == 'cli' || (is_numeric($_SERVER['argc']) && $_SERVER['argc'] > 0)));
}
Login or register to post comments