1.20.x bootstrap.inc backdrop_is_cli()

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

File

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

Code

function backdrop_is_cli() {
  return (!isset($_SERVER['SERVER_SOFTWARE']) && (php_sapi_name() == 'cli' || (is_numeric($_SERVER['argc']) && $_SERVER['argc'] > 0)));
}