Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ListParser.php

function ListParser::parse

Parameters

string|array $value:

1 call to ListParser::parse()
Configuration::getList in vendor/open-telemetry/sdk/Common/Configuration/Configuration.php

File

vendor/open-telemetry/sdk/Common/Configuration/Parser/ListParser.php, line 14

Class

ListParser

Namespace

OpenTelemetry\SDK\Common\Configuration\Parser

Code

public static function parse($value) : array {
    if (is_array($value)) {
        return $value;
    }
    if (trim($value) === '') {
        return [];
    }
    return array_map(fn($value) => trim($value), explode(self::DEFAULT_SEPARATOR, $value));
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal