Deprecated: Constant E_STRICT is deprecated in /home/pastorz/old-espace-client/vendor/symfony/error-handler/ErrorHandler.php on line 58

Deprecated: Constant E_STRICT is deprecated in /home/pastorz/old-espace-client/vendor/symfony/error-handler/ErrorHandler.php on line 76
Symfony Profiler

vendor/symfony/string/AbstractString.php line 402

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\String;
  11. use Symfony\Component\String\Exception\ExceptionInterface;
  12. use Symfony\Component\String\Exception\InvalidArgumentException;
  13. use Symfony\Component\String\Exception\RuntimeException;
  14. /**
  15.  * Represents a string of abstract characters.
  16.  *
  17.  * Unicode defines 3 types of "characters" (bytes, code points and grapheme clusters).
  18.  * This class is the abstract type to use as a type-hint when the logic you want to
  19.  * implement doesn't care about the exact variant it deals with.
  20.  *
  21.  * @author Nicolas Grekas <p@tchwork.com>
  22.  * @author Hugo Hamon <hugohamon@neuf.fr>
  23.  *
  24.  * @throws ExceptionInterface
  25.  */
  26. abstract class AbstractString implements \Stringable\JsonSerializable
  27. {
  28.     public const PREG_PATTERN_ORDER \PREG_PATTERN_ORDER;
  29.     public const PREG_SET_ORDER \PREG_SET_ORDER;
  30.     public const PREG_OFFSET_CAPTURE \PREG_OFFSET_CAPTURE;
  31.     public const PREG_UNMATCHED_AS_NULL \PREG_UNMATCHED_AS_NULL;
  32.     public const PREG_SPLIT 0;
  33.     public const PREG_SPLIT_NO_EMPTY \PREG_SPLIT_NO_EMPTY;
  34.     public const PREG_SPLIT_DELIM_CAPTURE \PREG_SPLIT_DELIM_CAPTURE;
  35.     public const PREG_SPLIT_OFFSET_CAPTURE \PREG_SPLIT_OFFSET_CAPTURE;
  36.     protected $string '';
  37.     protected $ignoreCase false;
  38.     abstract public function __construct(string $string '');
  39.     /**
  40.      * Unwraps instances of AbstractString back to strings.
  41.      *
  42.      * @return string[]|array
  43.      */
  44.     public static function unwrap(array $values): array
  45.     {
  46.         foreach ($values as $k => $v) {
  47.             if ($v instanceof self) {
  48.                 $values[$k] = $v->__toString();
  49.             } elseif (\is_array($v) && $values[$k] !== $v = static::unwrap($v)) {
  50.                 $values[$k] = $v;
  51.             }
  52.         }
  53.         return $values;
  54.     }
  55.     /**
  56.      * Wraps (and normalizes) strings in instances of AbstractString.
  57.      *
  58.      * @return static[]|array
  59.      */
  60.     public static function wrap(array $values): array
  61.     {
  62.         $i 0;
  63.         $keys null;
  64.         foreach ($values as $k => $v) {
  65.             if (\is_string($k) && '' !== $k && $k !== $j = (string) new static($k)) {
  66.                 $keys $keys ?? array_keys($values);
  67.                 $keys[$i] = $j;
  68.             }
  69.             if (\is_string($v)) {
  70.                 $values[$k] = new static($v);
  71.             } elseif (\is_array($v) && $values[$k] !== $v = static::wrap($v)) {
  72.                 $values[$k] = $v;
  73.             }
  74.             ++$i;
  75.         }
  76.         return null !== $keys array_combine($keys$values) : $values;
  77.     }
  78.     /**
  79.      * @param string|string[] $needle
  80.      *
  81.      * @return static
  82.      */
  83.     public function after($needlebool $includeNeedle falseint $offset 0): self
  84.     {
  85.         $str = clone $this;
  86.         $i \PHP_INT_MAX;
  87.         foreach ((array) $needle as $n) {
  88.             $n = (string) $n;
  89.             $j $this->indexOf($n$offset);
  90.             if (null !== $j && $j $i) {
  91.                 $i $j;
  92.                 $str->string $n;
  93.             }
  94.         }
  95.         if (\PHP_INT_MAX === $i) {
  96.             return $str;
  97.         }
  98.         if (!$includeNeedle) {
  99.             $i += $str->length();
  100.         }
  101.         return $this->slice($i);
  102.     }
  103.     /**
  104.      * @param string|string[] $needle
  105.      *
  106.      * @return static
  107.      */
  108.     public function afterLast($needlebool $includeNeedle falseint $offset 0): self
  109.     {
  110.         $str = clone $this;
  111.         $i null;
  112.         foreach ((array) $needle as $n) {
  113.             $n = (string) $n;
  114.             $j $this->indexOfLast($n$offset);
  115.             if (null !== $j && $j >= $i) {
  116.                 $i $offset $j;
  117.                 $str->string $n;
  118.             }
  119.         }
  120.         if (null === $i) {
  121.             return $str;
  122.         }
  123.         if (!$includeNeedle) {
  124.             $i += $str->length();
  125.         }
  126.         return $this->slice($i);
  127.     }
  128.     /**
  129.      * @return static
  130.      */
  131.     abstract public function append(string ...$suffix): self;
  132.     /**
  133.      * @param string|string[] $needle
  134.      *
  135.      * @return static
  136.      */
  137.     public function before($needlebool $includeNeedle falseint $offset 0): self
  138.     {
  139.         $str = clone $this;
  140.         $i \PHP_INT_MAX;
  141.         foreach ((array) $needle as $n) {
  142.             $n = (string) $n;
  143.             $j $this->indexOf($n$offset);
  144.             if (null !== $j && $j $i) {
  145.                 $i $j;
  146.                 $str->string $n;
  147.             }
  148.         }
  149.         if (\PHP_INT_MAX === $i) {
  150.             return $str;
  151.         }
  152.         if ($includeNeedle) {
  153.             $i += $str->length();
  154.         }
  155.         return $this->slice(0$i);
  156.     }
  157.     /**
  158.      * @param string|string[] $needle
  159.      *
  160.      * @return static
  161.      */
  162.     public function beforeLast($needlebool $includeNeedle falseint $offset 0): self
  163.     {
  164.         $str = clone $this;
  165.         $i null;
  166.         foreach ((array) $needle as $n) {
  167.             $n = (string) $n;
  168.             $j $this->indexOfLast($n$offset);
  169.             if (null !== $j && $j >= $i) {
  170.                 $i $offset $j;
  171.                 $str->string $n;
  172.             }
  173.         }
  174.         if (null === $i) {
  175.             return $str;
  176.         }
  177.         if ($includeNeedle) {
  178.             $i += $str->length();
  179.         }
  180.         return $this->slice(0$i);
  181.     }
  182.     /**
  183.      * @return int[]
  184.      */
  185.     public function bytesAt(int $offset): array
  186.     {
  187.         $str $this->slice($offset1);
  188.         return '' === $str->string ? [] : array_values(unpack('C*'$str->string));
  189.     }
  190.     /**
  191.      * @return static
  192.      */
  193.     abstract public function camel(): self;
  194.     /**
  195.      * @return static[]
  196.      */
  197.     abstract public function chunk(int $length 1): array;
  198.     /**
  199.      * @return static
  200.      */
  201.     public function collapseWhitespace(): self
  202.     {
  203.         $str = clone $this;
  204.         $str->string trim(preg_replace("/(?:[ \n\r\t\x0C]{2,}+|[\n\r\t\x0C])/"' '$str->string), " \n\r\t\x0C");
  205.         return $str;
  206.     }
  207.     /**
  208.      * @param string|string[] $needle
  209.      */
  210.     public function containsAny($needle): bool
  211.     {
  212.         return null !== $this->indexOf($needle);
  213.     }
  214.     /**
  215.      * @param string|string[] $suffix
  216.      */
  217.     public function endsWith($suffix): bool
  218.     {
  219.         if (!\is_array($suffix) && !$suffix instanceof \Traversable) {
  220.             throw new \TypeError(sprintf('Method "%s()" must be overridden by class "%s" to deal with non-iterable values.'__FUNCTION__, static::class));
  221.         }
  222.         foreach ($suffix as $s) {
  223.             if ($this->endsWith((string) $s)) {
  224.                 return true;
  225.             }
  226.         }
  227.         return false;
  228.     }
  229.     /**
  230.      * @return static
  231.      */
  232.     public function ensureEnd(string $suffix): self
  233.     {
  234.         if (!$this->endsWith($suffix)) {
  235.             return $this->append($suffix);
  236.         }
  237.         $suffix preg_quote($suffix);
  238.         $regex '{('.$suffix.')(?:'.$suffix.')++$}D';
  239.         return $this->replaceMatches($regex.($this->ignoreCase 'i' ''), '$1');
  240.     }
  241.     /**
  242.      * @return static
  243.      */
  244.     public function ensureStart(string $prefix): self
  245.     {
  246.         $prefix = new static($prefix);
  247.         if (!$this->startsWith($prefix)) {
  248.             return $this->prepend($prefix);
  249.         }
  250.         $str = clone $this;
  251.         $i $prefixLen $prefix->length();
  252.         while ($this->indexOf($prefix$i) === $i) {
  253.             $str $str->slice($prefixLen);
  254.             $i += $prefixLen;
  255.         }
  256.         return $str;
  257.     }
  258.     /**
  259.      * @param string|string[] $string
  260.      */
  261.     public function equalsTo($string): bool
  262.     {
  263.         if (!\is_array($string) && !$string instanceof \Traversable) {
  264.             throw new \TypeError(sprintf('Method "%s()" must be overridden by class "%s" to deal with non-iterable values.'__FUNCTION__, static::class));
  265.         }
  266.         foreach ($string as $s) {
  267.             if ($this->equalsTo((string) $s)) {
  268.                 return true;
  269.             }
  270.         }
  271.         return false;
  272.     }
  273.     /**
  274.      * @return static
  275.      */
  276.     abstract public function folded(): self;
  277.     /**
  278.      * @return static
  279.      */
  280.     public function ignoreCase(): self
  281.     {
  282.         $str = clone $this;
  283.         $str->ignoreCase true;
  284.         return $str;
  285.     }
  286.     /**
  287.      * @param string|string[] $needle
  288.      */
  289.     public function indexOf($needleint $offset 0): ?int
  290.     {
  291.         if (!\is_array($needle) && !$needle instanceof \Traversable) {
  292.             throw new \TypeError(sprintf('Method "%s()" must be overridden by class "%s" to deal with non-iterable values.'__FUNCTION__, static::class));
  293.         }
  294.         $i \PHP_INT_MAX;
  295.         foreach ($needle as $n) {
  296.             $j $this->indexOf((string) $n$offset);
  297.             if (null !== $j && $j $i) {
  298.                 $i $j;
  299.             }
  300.         }
  301.         return \PHP_INT_MAX === $i null $i;
  302.     }
  303.     /**
  304.      * @param string|string[] $needle
  305.      */
  306.     public function indexOfLast($needleint $offset 0): ?int
  307.     {
  308.         if (!\is_array($needle) && !$needle instanceof \Traversable) {
  309.             throw new \TypeError(sprintf('Method "%s()" must be overridden by class "%s" to deal with non-iterable values.'__FUNCTION__, static::class));
  310.         }
  311.         $i null;
  312.         foreach ($needle as $n) {
  313.             $j $this->indexOfLast((string) $n$offset);
  314.             if (null !== $j && $j >= $i) {
  315.                 $i $offset $j;
  316.             }
  317.         }
  318.         return $i;
  319.     }
  320.     public function isEmpty(): bool
  321.     {
  322.         return '' === $this->string;
  323.     }
  324.     /**
  325.      * @return static
  326.      */
  327.     abstract public function join(array $stringsstring $lastGlue null): self;
  328.     public function jsonSerialize(): string
  329.     {
  330.         return $this->string;
  331.     }
  332.     abstract public function length(): int;
  333.     /**
  334.      * @return static
  335.      */
  336.     abstract public function lower(): self;
  337.     /**
  338.      * Matches the string using a regular expression.
  339.      *
  340.      * Pass PREG_PATTERN_ORDER or PREG_SET_ORDER as $flags to get all occurrences matching the regular expression.
  341.      *
  342.      * @return array All matches in a multi-dimensional array ordered according to flags
  343.      */
  344.     abstract public function match(string $regexpint $flags 0int $offset 0): array;
  345.     /**
  346.      * @return static
  347.      */
  348.     abstract public function padBoth(int $lengthstring $padStr ' '): self;
  349.     /**
  350.      * @return static
  351.      */
  352.     abstract public function padEnd(int $lengthstring $padStr ' '): self;
  353.     /**
  354.      * @return static
  355.      */
  356.     abstract public function padStart(int $lengthstring $padStr ' '): self;
  357.     /**
  358.      * @return static
  359.      */
  360.     abstract public function prepend(string ...$prefix): self;
  361.     /**
  362.      * @return static
  363.      */
  364.     public function repeat(int $multiplier): self
  365.     {
  366.         if ($multiplier) {
  367.             throw new InvalidArgumentException(sprintf('Multiplier must be positive, %d given.'$multiplier));
  368.         }
  369.         $str = clone $this;
  370.         $str->string str_repeat($str->string$multiplier);
  371.         return $str;
  372.     }
  373.     /**
  374.      * @return static
  375.      */
  376.     abstract public function replace(string $fromstring $to): self;
  377.     /**
  378.      * @param string|callable $to
  379.      *
  380.      * @return static
  381.      */
  382.     abstract public function replaceMatches(string $fromRegexp$to): self;
  383.     /**
  384.      * @return static
  385.      */
  386.     abstract public function reverse(): self;
  387.     /**
  388.      * @return static
  389.      */
  390.     abstract public function slice(int $start 0int $length null): self;
  391.     /**
  392.      * @return static
  393.      */
  394.     abstract public function snake(): self;
  395.     /**
  396.      * @return static
  397.      */
  398.     abstract public function splice(string $replacementint $start 0int $length null): self;
  399.     /**
  400.      * @return static[]
  401.      */
  402.     public function split(string $delimiterint $limit nullint $flags null): array
  403.     {
  404.         if (null === $flags) {
  405.             throw new \TypeError('Split behavior when $flags is null must be implemented by child classes.');
  406.         }
  407.         if ($this->ignoreCase) {
  408.             $delimiter .= 'i';
  409.         }
  410.         set_error_handler(static function ($t$m) { throw new InvalidArgumentException($m); });
  411.         try {
  412.             if (false === $chunks preg_split($delimiter$this->string$limit$flags)) {
  413.                 $lastError preg_last_error();
  414.                 foreach (get_defined_constants(true)['pcre'] as $k => $v) {
  415.                     if ($lastError === $v && '_ERROR' === substr($k, -6)) {
  416.                         throw new RuntimeException('Splitting failed with '.$k.'.');
  417.                     }
  418.                 }
  419.                 throw new RuntimeException('Splitting failed with unknown error code.');
  420.             }
  421.         } finally {
  422.             restore_error_handler();
  423.         }
  424.         $str = clone $this;
  425.         if (self::PREG_SPLIT_OFFSET_CAPTURE $flags) {
  426.             foreach ($chunks as &$chunk) {
  427.                 $str->string $chunk[0];
  428.                 $chunk[0] = clone $str;
  429.             }
  430.         } else {
  431.             foreach ($chunks as &$chunk) {
  432.                 $str->string $chunk;
  433.                 $chunk = clone $str;
  434.             }
  435.         }
  436.         return $chunks;
  437.     }
  438.     /**
  439.      * @param string|string[] $prefix
  440.      */
  441.     public function startsWith($prefix): bool
  442.     {
  443.         if (!\is_array($prefix) && !$prefix instanceof \Traversable) {
  444.             throw new \TypeError(sprintf('Method "%s()" must be overridden by class "%s" to deal with non-iterable values.'__FUNCTION__, static::class));
  445.         }
  446.         foreach ($prefix as $prefix) {
  447.             if ($this->startsWith((string) $prefix)) {
  448.                 return true;
  449.             }
  450.         }
  451.         return false;
  452.     }
  453.     /**
  454.      * @return static
  455.      */
  456.     abstract public function title(bool $allWords false): self;
  457.     public function toByteString(string $toEncoding null): ByteString
  458.     {
  459.         $b = new ByteString();
  460.         $toEncoding \in_array($toEncoding, ['utf8''utf-8''UTF8'], true) ? 'UTF-8' $toEncoding;
  461.         if (null === $toEncoding || $toEncoding === $fromEncoding $this instanceof AbstractUnicodeString || preg_match('//u'$b->string) ? 'UTF-8' 'Windows-1252') {
  462.             $b->string $this->string;
  463.             return $b;
  464.         }
  465.         set_error_handler(static function ($t$m) { throw new InvalidArgumentException($m); });
  466.         try {
  467.             try {
  468.                 $b->string mb_convert_encoding($this->string$toEncoding'UTF-8');
  469.             } catch (InvalidArgumentException $e) {
  470.                 if (!\function_exists('iconv')) {
  471.                     throw $e;
  472.                 }
  473.                 $b->string iconv('UTF-8'$toEncoding$this->string);
  474.             }
  475.         } finally {
  476.             restore_error_handler();
  477.         }
  478.         return $b;
  479.     }
  480.     public function toCodePointString(): CodePointString
  481.     {
  482.         return new CodePointString($this->string);
  483.     }
  484.     public function toString(): string
  485.     {
  486.         return $this->string;
  487.     }
  488.     public function toUnicodeString(): UnicodeString
  489.     {
  490.         return new UnicodeString($this->string);
  491.     }
  492.     /**
  493.      * @return static
  494.      */
  495.     abstract public function trim(string $chars " \t\n\r\0\x0B\x0C\u{A0}\u{FEFF}"): self;
  496.     /**
  497.      * @return static
  498.      */
  499.     abstract public function trimEnd(string $chars " \t\n\r\0\x0B\x0C\u{A0}\u{FEFF}"): self;
  500.     /**
  501.      * @param string|string[] $prefix
  502.      *
  503.      * @return static
  504.      */
  505.     public function trimPrefix($prefix): self
  506.     {
  507.         if (\is_array($prefix) || $prefix instanceof \Traversable) {
  508.             foreach ($prefix as $s) {
  509.                 $t $this->trimPrefix($s);
  510.                 if ($t->string !== $this->string) {
  511.                     return $t;
  512.                 }
  513.             }
  514.             return clone $this;
  515.         }
  516.         $str = clone $this;
  517.         if ($prefix instanceof self) {
  518.             $prefix $prefix->string;
  519.         } else {
  520.             $prefix = (string) $prefix;
  521.         }
  522.         if ('' !== $prefix && \strlen($this->string) >= \strlen($prefix) && === substr_compare($this->string$prefix0\strlen($prefix), $this->ignoreCase)) {
  523.             $str->string substr($this->string\strlen($prefix));
  524.         }
  525.         return $str;
  526.     }
  527.     /**
  528.      * @return static
  529.      */
  530.     abstract public function trimStart(string $chars " \t\n\r\0\x0B\x0C\u{A0}\u{FEFF}"): self;
  531.     /**
  532.      * @param string|string[] $suffix
  533.      *
  534.      * @return static
  535.      */
  536.     public function trimSuffix($suffix): self
  537.     {
  538.         if (\is_array($suffix) || $suffix instanceof \Traversable) {
  539.             foreach ($suffix as $s) {
  540.                 $t $this->trimSuffix($s);
  541.                 if ($t->string !== $this->string) {
  542.                     return $t;
  543.                 }
  544.             }
  545.             return clone $this;
  546.         }
  547.         $str = clone $this;
  548.         if ($suffix instanceof self) {
  549.             $suffix $suffix->string;
  550.         } else {
  551.             $suffix = (string) $suffix;
  552.         }
  553.         if ('' !== $suffix && \strlen($this->string) >= \strlen($suffix) && === substr_compare($this->string$suffix, -\strlen($suffix), null$this->ignoreCase)) {
  554.             $str->string substr($this->string0, -\strlen($suffix));
  555.         }
  556.         return $str;
  557.     }
  558.     /**
  559.      * @return static
  560.      */
  561.     public function truncate(int $lengthstring $ellipsis ''bool $cut true): self
  562.     {
  563.         $stringLength $this->length();
  564.         if ($stringLength <= $length) {
  565.             return clone $this;
  566.         }
  567.         $ellipsisLength '' !== $ellipsis ? (new static($ellipsis))->length() : 0;
  568.         if ($length $ellipsisLength) {
  569.             $ellipsisLength 0;
  570.         }
  571.         if (!$cut) {
  572.             if (null === $length $this->indexOf([' '"\r""\n""\t"], ($length ?: 1) - 1)) {
  573.                 return clone $this;
  574.             }
  575.             $length += $ellipsisLength;
  576.         }
  577.         $str $this->slice(0$length $ellipsisLength);
  578.         return $ellipsisLength $str->trimEnd()->append($ellipsis) : $str;
  579.     }
  580.     /**
  581.      * @return static
  582.      */
  583.     abstract public function upper(): self;
  584.     /**
  585.      * Returns the printable length on a terminal.
  586.      */
  587.     abstract public function width(bool $ignoreAnsiDecoration true): int;
  588.     /**
  589.      * @return static
  590.      */
  591.     public function wordwrap(int $width 75string $break "\n"bool $cut false): self
  592.     {
  593.         $lines '' !== $break $this->split($break) : [clone $this];
  594.         $chars = [];
  595.         $mask '';
  596.         if (=== \count($lines) && '' === $lines[0]->string) {
  597.             return $lines[0];
  598.         }
  599.         foreach ($lines as $i => $line) {
  600.             if ($i) {
  601.                 $chars[] = $break;
  602.                 $mask .= '#';
  603.             }
  604.             foreach ($line->chunk() as $char) {
  605.                 $chars[] = $char->string;
  606.                 $mask .= ' ' === $char->string ' ' '?';
  607.             }
  608.         }
  609.         $string '';
  610.         $j 0;
  611.         $b $i = -1;
  612.         $mask wordwrap($mask$width'#'$cut);
  613.         while (false !== $b strpos($mask'#'$b 1)) {
  614.             for (++$i$i $b; ++$i) {
  615.                 $string .= $chars[$j];
  616.                 unset($chars[$j++]);
  617.             }
  618.             if ($break === $chars[$j] || ' ' === $chars[$j]) {
  619.                 unset($chars[$j++]);
  620.             }
  621.             $string .= $break;
  622.         }
  623.         $str = clone $this;
  624.         $str->string $string.implode(''$chars);
  625.         return $str;
  626.     }
  627.     public function __sleep(): array
  628.     {
  629.         return ['string'];
  630.     }
  631.     public function __clone()
  632.     {
  633.         $this->ignoreCase false;
  634.     }
  635.     public function __toString(): string
  636.     {
  637.         return $this->string;
  638.     }
  639. }