123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803 |
- <?php
- declare(strict_types=1);
- /**
- * This file is part of Hyperf.
- *
- * @link https://www.hyperf.io
- * @document https://hyperf.wiki
- * @contact group@hyperf.io
- * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
- */
- namespace Hyperf\Utils;
- use Closure;
- use Hyperf\Macroable\Macroable;
- use JsonSerializable;
- class Stringable implements JsonSerializable
- {
- use Traits\Conditionable;
- use Macroable;
- use Traits\Tappable;
- /**
- * The underlying string value.
- *
- * @var string
- */
- protected $value;
- /**
- * Create a new instance of the class.
- *
- * @param string $value
- */
- public function __construct($value = '')
- {
- $this->value = (string) $value;
- }
- /**
- * Proxy dynamic properties onto methods.
- *
- * @param string $key
- * @return mixed
- */
- public function __get($key)
- {
- return $this->{$key}();
- }
- /**
- * Get the raw string value.
- *
- * @return string
- */
- public function __toString()
- {
- return (string) $this->value;
- }
- /**
- * Return the remainder of a string after the first occurrence of a given value.
- *
- * @param string $search
- * @return static
- */
- public function after($search)
- {
- return new static(Str::after($this->value, $search));
- }
- /**
- * Return the remainder of a string after the last occurrence of a given value.
- *
- * @param string $search
- * @return static
- */
- public function afterLast($search)
- {
- return new static(Str::afterLast($this->value, $search));
- }
- /**
- * Append the given values to the string.
- *
- * @param array $values
- * @return static
- */
- public function append(...$values)
- {
- return new static($this->value . implode('', $values));
- }
- /**
- * Transliterate a UTF-8 value to ASCII.
- *
- * @param string $language
- * @return static
- */
- public function ascii($language = 'en')
- {
- return new static(Str::ascii($this->value, $language));
- }
- /**
- * Get the trailing name component of the path.
- *
- * @param string $suffix
- * @return static
- */
- public function basename($suffix = '')
- {
- return new static(basename($this->value, $suffix));
- }
- /**
- * Get the basename of the class path.
- *
- * @return static
- */
- public function classBasename()
- {
- return new static(class_basename($this->value));
- }
- /**
- * Get the portion of a string before the first occurrence of a given value.
- *
- * @param string $search
- * @return static
- */
- public function before($search)
- {
- return new static(Str::before($this->value, $search));
- }
- /**
- * Get the portion of a string before the last occurrence of a given value.
- *
- * @param string $search
- * @return static
- */
- public function beforeLast($search)
- {
- return new static(Str::beforeLast($this->value, $search));
- }
- /**
- * Get the portion of a string between two given values.
- *
- * @param string $from
- * @param string $to
- * @return static
- */
- public function between($from, $to)
- {
- return new static(Str::between($this->value, $from, $to));
- }
- /**
- * Convert a value to camel case.
- *
- * @return static
- */
- public function camel()
- {
- return new static(Str::camel($this->value));
- }
- /**
- * Determine if a given string contains a given substring.
- *
- * @param array|string $needles
- * @return bool
- */
- public function contains($needles)
- {
- return Str::contains($this->value, $needles);
- }
- /**
- * Determine if a given string contains all array values.
- *
- * @return bool
- */
- public function containsAll(array $needles)
- {
- return Str::containsAll($this->value, $needles);
- }
- /**
- * Get the parent directory's path.
- *
- * @param int $levels
- * @return static
- */
- public function dirname($levels = 1)
- {
- return new static(dirname($this->value, $levels));
- }
- /**
- * Determine if a given string ends with a given substring.
- *
- * @param array|string $needles
- * @return bool
- */
- public function endsWith($needles)
- {
- return Str::endsWith($this->value, $needles);
- }
- /**
- * Determine if the string is an exact match with the given value.
- *
- * @param string $value
- * @return bool
- */
- public function exactly($value)
- {
- return $this->value === $value;
- }
- /**
- * Explode the string into an array.
- *
- * @param string $delimiter
- * @param int $limit
- * @return \Hyperf\Utils\Collection
- */
- public function explode($delimiter, $limit = PHP_INT_MAX)
- {
- return collect(explode($delimiter, $this->value, $limit));
- }
- /**
- * Split a string using a regular expression or by length.
- *
- * @param int|string $pattern
- * @param int $limit
- * @param int $flags
- * @return \Hyperf\Utils\Collection
- */
- public function split($pattern, $limit = -1, $flags = 0)
- {
- if (filter_var($pattern, FILTER_VALIDATE_INT) !== false) {
- return collect(mb_str_split($this->value, $pattern));
- }
- $segments = preg_split($pattern, $this->value, $limit, $flags);
- return ! empty($segments) ? collect($segments) : collect();
- }
- /**
- * Cap a string with a single instance of a given value.
- *
- * @param string $cap
- * @return static
- */
- public function finish($cap)
- {
- return new static(Str::finish($this->value, $cap));
- }
- /**
- * Determine if a given string matches a given pattern.
- *
- * @param array|string $pattern
- * @return bool
- */
- public function is($pattern)
- {
- return Str::is($pattern, $this->value);
- }
- /**
- * Determine if the given string is empty.
- *
- * @return bool
- */
- public function isEmpty()
- {
- return $this->value === '';
- }
- /**
- * Determine if the given string is not empty.
- *
- * @return bool
- */
- public function isNotEmpty()
- {
- return ! $this->isEmpty();
- }
- /**
- * Convert a string to kebab case.
- *
- * @return static
- */
- public function kebab()
- {
- return new static(Str::kebab($this->value));
- }
- /**
- * Return the length of the given string.
- *
- * @param string $encoding
- * @return int
- */
- public function length($encoding = null)
- {
- return Str::length($this->value, $encoding);
- }
- /**
- * Limit the number of characters in a string.
- *
- * @param int $limit
- * @param string $end
- * @return static
- */
- public function limit($limit = 100, $end = '...')
- {
- return new static(Str::limit($this->value, $limit, $end));
- }
- /**
- * Convert the given string to lower-case.
- *
- * @return static
- */
- public function lower()
- {
- return new static(Str::lower($this->value));
- }
- /**
- * Get the string matching the given pattern.
- *
- * @param string $pattern
- * @return static
- */
- public function match($pattern)
- {
- preg_match($pattern, $this->value, $matches);
- if (! $matches) {
- return new static();
- }
- return new static($matches[1] ?? $matches[0]);
- }
- /**
- * Get the string matching the given pattern.
- *
- * @param string $pattern
- * @return \Hyperf\Utils\Collection
- */
- public function matchAll($pattern)
- {
- preg_match_all($pattern, $this->value, $matches);
- if (empty($matches[0])) {
- return collect();
- }
- return collect($matches[1] ?? $matches[0]);
- }
- /**
- * Determine if the string matches the given pattern.
- *
- * @param string $pattern
- * @return bool
- */
- public function test($pattern)
- {
- return $this->match($pattern)->isNotEmpty();
- }
- /**
- * Pad both sides of the string with another.
- *
- * @param int $length
- * @param string $pad
- * @return static
- */
- public function padBoth($length, $pad = ' ')
- {
- return new static(Str::padBoth($this->value, $length, $pad));
- }
- /**
- * Pad the left side of the string with another.
- *
- * @param int $length
- * @param string $pad
- * @return static
- */
- public function padLeft($length, $pad = ' ')
- {
- return new static(Str::padLeft($this->value, $length, $pad));
- }
- /**
- * Pad the right side of the string with another.
- *
- * @param int $length
- * @param string $pad
- * @return static
- */
- public function padRight($length, $pad = ' ')
- {
- return new static(Str::padRight($this->value, $length, $pad));
- }
- /**
- * Parse a Class@method style callback into class and method.
- *
- * @param null|string $default
- * @return array
- */
- public function parseCallback($default = null)
- {
- return Str::parseCallback($this->value, $default);
- }
- /**
- * Call the given callback and return a new string.
- *
- * @return static
- */
- public function pipe(callable $callback)
- {
- return new static(call_user_func($callback, $this));
- }
- /**
- * Get the plural form of an English word.
- *
- * @param int $count
- * @return static
- */
- public function plural($count = 2)
- {
- return new static(Str::plural($this->value, $count));
- }
- /**
- * Pluralize the last word of an English, studly caps case string.
- *
- * @param int $count
- * @return static
- */
- public function pluralStudly($count = 2)
- {
- return new static(Str::pluralStudly($this->value, $count));
- }
- /**
- * Prepend the given values to the string.
- *
- * @param array $values
- * @return static
- */
- public function prepend(...$values)
- {
- return new static(implode('', $values) . $this->value);
- }
- /**
- * Remove any occurrence of the given string in the subject.
- *
- * @param array<string>|string $search
- * @param bool $caseSensitive
- * @return static
- */
- public function remove($search, $caseSensitive = true)
- {
- return new static(Str::remove($search, $this->value, $caseSensitive));
- }
- /**
- * Repeat the string.
- *
- * @return static
- */
- public function repeat(int $times)
- {
- return new static(Str::repeat($this->value, $times));
- }
- /**
- * Replace the given value in the given string.
- *
- * @param string|string[] $search
- * @param string|string[] $replace
- * @return static
- */
- public function replace($search, $replace)
- {
- return new static(Str::replace($search, $replace, $this->value));
- }
- /**
- * Replace a given value in the string sequentially with an array.
- *
- * @param string $search
- * @return static
- */
- public function replaceArray($search, array $replace)
- {
- return new static(Str::replaceArray($search, $replace, $this->value));
- }
- /**
- * Replace the first occurrence of a given value in the string.
- *
- * @param string $search
- * @param string $replace
- * @return static
- */
- public function replaceFirst($search, $replace)
- {
- return new static(Str::replaceFirst($search, $replace, $this->value));
- }
- /**
- * Replace the last occurrence of a given value in the string.
- *
- * @param string $search
- * @param string $replace
- * @return static
- */
- public function replaceLast($search, $replace)
- {
- return new static(Str::replaceLast($search, $replace, $this->value));
- }
- /**
- * Replace the patterns matching the given regular expression.
- *
- * @param string $pattern
- * @param \Closure|string $replace
- * @param int $limit
- * @return static
- */
- public function replaceMatches($pattern, $replace, $limit = -1)
- {
- if ($replace instanceof Closure) {
- return new static(preg_replace_callback($pattern, $replace, $this->value, $limit));
- }
- return new static(preg_replace($pattern, $replace, $this->value, $limit));
- }
- /**
- * Begin a string with a single instance of a given value.
- *
- * @param string $prefix
- * @return static
- */
- public function start($prefix)
- {
- return new static(Str::start($this->value, $prefix));
- }
- /**
- * Strip HTML and PHP tags from the given string.
- *
- * @param null|string|string[] $allowedTags
- * @return static
- */
- public function stripTags($allowedTags = null)
- {
- return new static(strip_tags($this->value, $allowedTags));
- }
- /**
- * Convert the given string to upper-case.
- *
- * @return static
- */
- public function upper()
- {
- return new static(Str::upper($this->value));
- }
- /**
- * Convert the given string to title case.
- *
- * @return static
- */
- public function title()
- {
- return new static(Str::title($this->value));
- }
- /**
- * Get the singular form of an English word.
- *
- * @return static
- */
- public function singular()
- {
- return new static(Str::singular($this->value));
- }
- /**
- * Generate a URL friendly "slug" from a given string.
- *
- * @param string $separator
- * @param null|string $language
- * @return static
- */
- public function slug($separator = '-', $language = 'en')
- {
- return new static(Str::slug($this->value, $separator, $language));
- }
- /**
- * Convert a string to snake case.
- *
- * @param string $delimiter
- * @return static
- */
- public function snake($delimiter = '_')
- {
- return new static(Str::snake($this->value, $delimiter));
- }
- /**
- * Determine if a given string starts with a given substring.
- *
- * @param array|string $needles
- * @return bool
- */
- public function startsWith($needles)
- {
- return Str::startsWith($this->value, $needles);
- }
- /**
- * Convert a value to studly caps case.
- *
- * @return static
- */
- public function studly()
- {
- return new static(Str::studly($this->value));
- }
- /**
- * Returns the portion of the string specified by the start and length parameters.
- *
- * @param int $start
- * @param null|int $length
- * @return static
- */
- public function substr($start, $length = null)
- {
- return new static(Str::substr($this->value, $start, $length));
- }
- /**
- * Returns the number of substring occurrences.
- *
- * @param string $needle
- * @param null|int $offset
- * @param null|int $length
- * @return int
- */
- public function substrCount($needle, $offset = null, $length = null)
- {
- return Str::substrCount($this->value, $needle, $offset ?? 0, $length);
- }
- /**
- * Trim the string of the given characters.
- *
- * @param string $characters
- * @return static
- */
- public function trim($characters = null)
- {
- return new static(trim(...array_merge([$this->value], func_get_args())));
- }
- /**
- * Left trim the string of the given characters.
- *
- * @param string $characters
- * @return static
- */
- public function ltrim($characters = null)
- {
- return new static(ltrim(...array_merge([$this->value], func_get_args())));
- }
- /**
- * Right trim the string of the given characters.
- *
- * @param string $characters
- * @return static
- */
- public function rtrim($characters = null)
- {
- return new static(rtrim(...array_merge([$this->value], func_get_args())));
- }
- /**
- * Make a string's first character uppercase.
- *
- * @return static
- */
- public function ucfirst()
- {
- return new static(Str::ucfirst($this->value));
- }
- /**
- * Replaces the first or the last ones chars from a string by a given char.
- *
- * @param int $offset if is negative it starts from the end
- * @param string $replacement default is *
- * @return static
- */
- public function mask(int $offset = 0, int $length = 0, string $replacement = '*')
- {
- return new static(Str::mask($this->value, $offset, $length, $replacement));
- }
- /**
- * Execute the given callback if the string is empty.
- *
- * @param callable $callback
- * @return static
- */
- public function whenEmpty($callback)
- {
- if ($this->isEmpty()) {
- $result = $callback($this);
- return is_null($result) ? $this : $result;
- }
- return $this;
- }
- /**
- * Execute the given callback if the string is not empty.
- *
- * @param callable $callback
- * @return static
- */
- public function whenNotEmpty($callback)
- {
- if ($this->isNotEmpty()) {
- $result = $callback($this);
- return is_null($result) ? $this : $result;
- }
- return $this;
- }
- /**
- * Limit the number of words in a string.
- *
- * @param int $words
- * @param string $end
- * @return static
- */
- public function words($words = 100, $end = '...')
- {
- return new static(Str::words($this->value, $words, $end));
- }
- /**
- * Get the number of words a string contains.
- *
- * @return int
- */
- public function wordCount()
- {
- return str_word_count($this->value);
- }
- /**
- * Convert the object to a string when JSON encoded.
- *
- * @return string
- */
- public function jsonSerialize()
- {
- return $this->__toString();
- }
- }
|