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

Breadcrumb

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

function AbstractString::ensureStart

File

vendor/symfony/string/AbstractString.php, line 290

Class

AbstractString
Represents a string of abstract characters.

Namespace

Symfony\Component\String

Code

public function ensureStart(string $prefix) : static {
    $prefix = new static($prefix);
    if (!$this->startsWith($prefix)) {
        return $this->prepend($prefix);
    }
    $str = clone $this;
    $i = $prefixLen = $prefix->length();
    while ($this->indexOf($prefix, $i) === $i) {
        $str = $str->slice($prefixLen);
        $i += $prefixLen;
    }
    return $str;
}

API Navigation

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