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

Breadcrumb

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

function AbstractString::ensureEnd

File

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

Class

AbstractString
Represents a string of abstract characters.

Namespace

Symfony\Component\String

Code

public function ensureEnd(string $suffix) : static {
    if (!$this->endsWith($suffix)) {
        return $this->append($suffix);
    }
    $suffix = preg_quote($suffix);
    $regex = '{(' . $suffix . ')(?:' . $suffix . ')++$}D';
    return $this->replaceMatches($regex . ($this->ignoreCase ? 'i' : ''), '$1');
}

API Navigation

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