You are here

public static function StreamWrapperManagerInterface::getScheme in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/StreamWrapper/StreamWrapperManagerInterface.php \Drupal\Core\StreamWrapper\StreamWrapperManagerInterface::getScheme()
  2. 10 core/lib/Drupal/Core/StreamWrapper/StreamWrapperManagerInterface.php \Drupal\Core\StreamWrapper\StreamWrapperManagerInterface::getScheme()

Returns the scheme of a URI (e.g. a stream).

Parameters

string $uri: A stream, referenced as "scheme://target" or "data:target".

Return value

string|bool A string containing the name of the scheme, or FALSE if none. For example, the URI "public://example.txt" would return "public".

See also

\Drupal\Core\StreamWrapper\StreamWrapperManagerInterface::getTarget()

1 method overrides StreamWrapperManagerInterface::getScheme()
StreamWrapperManager::getScheme in core/lib/Drupal/Core/StreamWrapper/StreamWrapperManager.php
Returns the scheme of a URI (e.g. a stream).

File

core/lib/Drupal/Core/StreamWrapper/StreamWrapperManagerInterface.php, line 216

Class

StreamWrapperManagerInterface
Provides a StreamWrapper manager.

Namespace

Drupal\Core\StreamWrapper

Code

public static function getScheme($uri);