function SessionManager::isCli

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/Session/SessionManager.php \Drupal\Core\Session\SessionManager::isCli()
  2. 10 core/lib/Drupal/Core/Session/SessionManager.php \Drupal\Core\Session\SessionManager::isCli()
  3. 8.9.x core/lib/Drupal/Core/Session/SessionManager.php \Drupal\Core\Session\SessionManager::isCli()

Returns whether the current PHP process runs on CLI.

Command line clients do not support cookies nor sessions.

Return value

bool

File

core/lib/Drupal/Core/Session/SessionManager.php, line 282

Class

SessionManager
Manages user sessions.

Namespace

Drupal\Core\Session

Code

protected function isCli() {
  return PHP_SAPI === 'cli';
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.