123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848 |
- <?php
- namespace Illuminate\Support;
- use Closure;
- use Illuminate\Support\Traits\Macroable;
- use JsonException;
- use League\CommonMark\Environment\Environment;
- use League\CommonMark\Extension\GithubFlavoredMarkdownExtension;
- use League\CommonMark\Extension\InlinesOnly\InlinesOnlyExtension;
- use League\CommonMark\GithubFlavoredMarkdownConverter;
- use League\CommonMark\MarkdownConverter;
- use Ramsey\Uuid\Codec\TimestampFirstCombCodec;
- use Ramsey\Uuid\Generator\CombGenerator;
- use Ramsey\Uuid\Uuid;
- use Ramsey\Uuid\UuidFactory;
- use Symfony\Component\Uid\Ulid;
- use Throwable;
- use Traversable;
- use voku\helper\ASCII;
- class Str
- {
- use Macroable;
- /**
- * The cache of snake-cased words.
- *
- * @var array
- */
- protected static $snakeCache = [];
- /**
- * The cache of camel-cased words.
- *
- * @var array
- */
- protected static $camelCache = [];
- /**
- * The cache of studly-cased words.
- *
- * @var array
- */
- protected static $studlyCache = [];
- /**
- * The callback that should be used to generate UUIDs.
- *
- * @var callable|null
- */
- protected static $uuidFactory;
- /**
- * The callback that should be used to generate ULIDs.
- *
- * @var callable|null
- */
- protected static $ulidFactory;
- /**
- * The callback that should be used to generate random strings.
- *
- * @var callable|null
- */
- protected static $randomStringFactory;
- /**
- * Get a new stringable object from the given string.
- *
- * @param string $string
- * @return \Illuminate\Support\Stringable
- */
- public static function of($string)
- {
- return new Stringable($string);
- }
- /**
- * Return the remainder of a string after the first occurrence of a given value.
- *
- * @param string $subject
- * @param string $search
- * @return string
- */
- public static function after($subject, $search)
- {
- return $search === '' ? $subject : array_reverse(explode($search, $subject, 2))[0];
- }
- /**
- * Return the remainder of a string after the last occurrence of a given value.
- *
- * @param string $subject
- * @param string $search
- * @return string
- */
- public static function afterLast($subject, $search)
- {
- if ($search === '') {
- return $subject;
- }
- $position = strrpos($subject, (string) $search);
- if ($position === false) {
- return $subject;
- }
- return substr($subject, $position + strlen($search));
- }
- /**
- * Transliterate a UTF-8 value to ASCII.
- *
- * @param string $value
- * @param string $language
- * @return string
- */
- public static function ascii($value, $language = 'en')
- {
- return ASCII::to_ascii((string) $value, $language);
- }
- /**
- * Transliterate a string to its closest ASCII representation.
- *
- * @param string $string
- * @param string|null $unknown
- * @param bool|null $strict
- * @return string
- */
- public static function transliterate($string, $unknown = '?', $strict = false)
- {
- return ASCII::to_transliterate($string, $unknown, $strict);
- }
- /**
- * Get the portion of a string before the first occurrence of a given value.
- *
- * @param string $subject
- * @param string $search
- * @return string
- */
- public static function before($subject, $search)
- {
- if ($search === '') {
- return $subject;
- }
- $result = strstr($subject, (string) $search, true);
- return $result === false ? $subject : $result;
- }
- /**
- * Get the portion of a string before the last occurrence of a given value.
- *
- * @param string $subject
- * @param string $search
- * @return string
- */
- public static function beforeLast($subject, $search)
- {
- if ($search === '') {
- return $subject;
- }
- $pos = mb_strrpos($subject, $search);
- if ($pos === false) {
- return $subject;
- }
- return static::substr($subject, 0, $pos);
- }
- /**
- * Get the portion of a string between two given values.
- *
- * @param string $subject
- * @param string $from
- * @param string $to
- * @return string
- */
- public static function between($subject, $from, $to)
- {
- if ($from === '' || $to === '') {
- return $subject;
- }
- return static::beforeLast(static::after($subject, $from), $to);
- }
- /**
- * Get the smallest possible portion of a string between two given values.
- *
- * @param string $subject
- * @param string $from
- * @param string $to
- * @return string
- */
- public static function betweenFirst($subject, $from, $to)
- {
- if ($from === '' || $to === '') {
- return $subject;
- }
- return static::before(static::after($subject, $from), $to);
- }
- /**
- * Convert a value to camel case.
- *
- * @param string $value
- * @return string
- */
- public static function camel($value)
- {
- if (isset(static::$camelCache[$value])) {
- return static::$camelCache[$value];
- }
- return static::$camelCache[$value] = lcfirst(static::studly($value));
- }
- /**
- * Get the character at the specified index.
- *
- * @param string $subject
- * @param int $index
- * @return string|false
- */
- public static function charAt($subject, $index)
- {
- $length = mb_strlen($subject);
- if ($index < 0 ? $index < -$length : $index > $length - 1) {
- return false;
- }
- return mb_substr($subject, $index, 1);
- }
- /**
- * Determine if a given string contains a given substring.
- *
- * @param string $haystack
- * @param string|iterable<string> $needles
- * @param bool $ignoreCase
- * @return bool
- */
- public static function contains($haystack, $needles, $ignoreCase = false)
- {
- if ($ignoreCase) {
- $haystack = mb_strtolower($haystack);
- }
- if (! is_iterable($needles)) {
- $needles = (array) $needles;
- }
- foreach ($needles as $needle) {
- if ($ignoreCase) {
- $needle = mb_strtolower($needle);
- }
- if ($needle !== '' && str_contains($haystack, $needle)) {
- return true;
- }
- }
- return false;
- }
- /**
- * Determine if a given string contains all array values.
- *
- * @param string $haystack
- * @param iterable<string> $needles
- * @param bool $ignoreCase
- * @return bool
- */
- public static function containsAll($haystack, $needles, $ignoreCase = false)
- {
- foreach ($needles as $needle) {
- if (! static::contains($haystack, $needle, $ignoreCase)) {
- return false;
- }
- }
- return true;
- }
- /**
- * Convert the case of a string.
- *
- * @param string $string
- * @param int $mode
- * @param string|null $encoding
- * @return string
- */
- public static function convertCase(string $string, int $mode = MB_CASE_FOLD, ?string $encoding = 'UTF-8')
- {
- return mb_convert_case($string, $mode, $encoding);
- }
- /**
- * Determine if a given string ends with a given substring.
- *
- * @param string $haystack
- * @param string|iterable<string> $needles
- * @return bool
- */
- public static function endsWith($haystack, $needles)
- {
- if (! is_iterable($needles)) {
- $needles = (array) $needles;
- }
- foreach ($needles as $needle) {
- if ((string) $needle !== '' && str_ends_with($haystack, $needle)) {
- return true;
- }
- }
- return false;
- }
- /**
- * Extracts an excerpt from text that matches the first instance of a phrase.
- *
- * @param string $text
- * @param string $phrase
- * @param array $options
- * @return string|null
- */
- public static function excerpt($text, $phrase = '', $options = [])
- {
- $radius = $options['radius'] ?? 100;
- $omission = $options['omission'] ?? '...';
- preg_match('/^(.*?)('.preg_quote((string) $phrase, '/').')(.*)$/iu', (string) $text, $matches);
- if (empty($matches)) {
- return null;
- }
- $start = ltrim($matches[1]);
- $start = str(mb_substr($start, max(mb_strlen($start, 'UTF-8') - $radius, 0), $radius, 'UTF-8'))->ltrim()->unless(
- fn ($startWithRadius) => $startWithRadius->exactly($start),
- fn ($startWithRadius) => $startWithRadius->prepend($omission),
- );
- $end = rtrim($matches[3]);
- $end = str(mb_substr($end, 0, $radius, 'UTF-8'))->rtrim()->unless(
- fn ($endWithRadius) => $endWithRadius->exactly($end),
- fn ($endWithRadius) => $endWithRadius->append($omission),
- );
- return $start->append($matches[2], $end)->toString();
- }
- /**
- * Cap a string with a single instance of a given value.
- *
- * @param string $value
- * @param string $cap
- * @return string
- */
- public static function finish($value, $cap)
- {
- $quoted = preg_quote($cap, '/');
- return preg_replace('/(?:'.$quoted.')+$/u', '', $value).$cap;
- }
- /**
- * Wrap the string with the given strings.
- *
- * @param string $value
- * @param string $before
- * @param string|null $after
- * @return string
- */
- public static function wrap($value, $before, $after = null)
- {
- return $before.$value.($after ??= $before);
- }
- /**
- * Unwrap the string with the given strings.
- *
- * @param string $value
- * @param string $before
- * @param string|null $after
- * @return string
- */
- public static function unwrap($value, $before, $after = null)
- {
- if (static::startsWith($value, $before)) {
- $value = static::substr($value, static::length($before));
- }
- if (static::endsWith($value, $after ??= $before)) {
- $value = static::substr($value, 0, -static::length($after));
- }
- return $value;
- }
- /**
- * Determine if a given string matches a given pattern.
- *
- * @param string|iterable<string> $pattern
- * @param string $value
- * @return bool
- */
- public static function is($pattern, $value)
- {
- $value = (string) $value;
- if (! is_iterable($pattern)) {
- $pattern = [$pattern];
- }
- foreach ($pattern as $pattern) {
- $pattern = (string) $pattern;
- // If the given value is an exact match we can of course return true right
- // from the beginning. Otherwise, we will translate asterisks and do an
- // actual pattern match against the two strings to see if they match.
- if ($pattern === $value) {
- return true;
- }
- $pattern = preg_quote($pattern, '#');
- // Asterisks are translated into zero-or-more regular expression wildcards
- // to make it convenient to check if the strings starts with the given
- // pattern such as "library/*", making any string check convenient.
- $pattern = str_replace('\*', '.*', $pattern);
- if (preg_match('#^'.$pattern.'\z#u', $value) === 1) {
- return true;
- }
- }
- return false;
- }
- /**
- * Determine if a given string is 7 bit ASCII.
- *
- * @param string $value
- * @return bool
- */
- public static function isAscii($value)
- {
- return ASCII::is_ascii((string) $value);
- }
- /**
- * Determine if a given value is valid JSON.
- *
- * @param mixed $value
- * @return bool
- */
- public static function isJson($value)
- {
- if (! is_string($value)) {
- return false;
- }
- if (function_exists('json_validate')) {
- return json_validate($value, 512);
- }
- try {
- json_decode($value, true, 512, JSON_THROW_ON_ERROR);
- } catch (JsonException) {
- return false;
- }
- return true;
- }
- /**
- * Determine if a given value is a valid URL.
- *
- * @param mixed $value
- * @param array $protocols
- * @return bool
- */
- public static function isUrl($value, array $protocols = [])
- {
- if (! is_string($value)) {
- return false;
- }
- $protocolList = empty($protocols)
- ? 'aaa|aaas|about|acap|acct|acd|acr|adiumxtra|adt|afp|afs|aim|amss|android|appdata|apt|ark|attachment|aw|barion|beshare|bitcoin|bitcoincash|blob|bolo|browserext|calculator|callto|cap|cast|casts|chrome|chrome-extension|cid|coap|coap\+tcp|coap\+ws|coaps|coaps\+tcp|coaps\+ws|com-eventbrite-attendee|content|conti|crid|cvs|dab|data|dav|diaspora|dict|did|dis|dlna-playcontainer|dlna-playsingle|dns|dntp|dpp|drm|drop|dtn|dvb|ed2k|elsi|example|facetime|fax|feed|feedready|file|filesystem|finger|first-run-pen-experience|fish|fm|ftp|fuchsia-pkg|geo|gg|git|gizmoproject|go|gopher|graph|gtalk|h323|ham|hcap|hcp|http|https|hxxp|hxxps|hydrazone|iax|icap|icon|im|imap|info|iotdisco|ipn|ipp|ipps|irc|irc6|ircs|iris|iris\.beep|iris\.lwz|iris\.xpc|iris\.xpcs|isostore|itms|jabber|jar|jms|keyparc|lastfm|ldap|ldaps|leaptofrogans|lorawan|lvlt|magnet|mailserver|mailto|maps|market|message|mid|mms|modem|mongodb|moz|ms-access|ms-browser-extension|ms-calculator|ms-drive-to|ms-enrollment|ms-excel|ms-eyecontrolspeech|ms-gamebarservices|ms-gamingoverlay|ms-getoffice|ms-help|ms-infopath|ms-inputapp|ms-lockscreencomponent-config|ms-media-stream-id|ms-mixedrealitycapture|ms-mobileplans|ms-officeapp|ms-people|ms-project|ms-powerpoint|ms-publisher|ms-restoretabcompanion|ms-screenclip|ms-screensketch|ms-search|ms-search-repair|ms-secondary-screen-controller|ms-secondary-screen-setup|ms-settings|ms-settings-airplanemode|ms-settings-bluetooth|ms-settings-camera|ms-settings-cellular|ms-settings-cloudstorage|ms-settings-connectabledevices|ms-settings-displays-topology|ms-settings-emailandaccounts|ms-settings-language|ms-settings-location|ms-settings-lock|ms-settings-nfctransactions|ms-settings-notifications|ms-settings-power|ms-settings-privacy|ms-settings-proximity|ms-settings-screenrotation|ms-settings-wifi|ms-settings-workplace|ms-spd|ms-sttoverlay|ms-transit-to|ms-useractivityset|ms-virtualtouchpad|ms-visio|ms-walk-to|ms-whiteboard|ms-whiteboard-cmd|ms-word|msnim|msrp|msrps|mss|mtqp|mumble|mupdate|mvn|news|nfs|ni|nih|nntp|notes|ocf|oid|onenote|onenote-cmd|opaquelocktoken|openpgp4fpr|pack|palm|paparazzi|payto|pkcs11|platform|pop|pres|prospero|proxy|pwid|psyc|pttp|qb|query|redis|rediss|reload|res|resource|rmi|rsync|rtmfp|rtmp|rtsp|rtsps|rtspu|s3|secondlife|service|session|sftp|sgn|shttp|sieve|simpleledger|sip|sips|skype|smb|sms|smtp|snews|snmp|soap\.beep|soap\.beeps|soldat|spiffe|spotify|ssh|steam|stun|stuns|submit|svn|tag|teamspeak|tel|teliaeid|telnet|tftp|tg|things|thismessage|tip|tn3270|tool|ts3server|turn|turns|tv|udp|unreal|urn|ut2004|v-event|vemmi|ventrilo|videotex|vnc|view-source|wais|webcal|wpid|ws|wss|wtai|wyciwyg|xcon|xcon-userid|xfire|xmlrpc\.beep|xmlrpc\.beeps|xmpp|xri|ymsgr|z39\.50|z39\.50r|z39\.50s'
- : implode('|', $protocols);
- /*
- * This pattern is derived from Symfony\Component\Validator\Constraints\UrlValidator (5.0.7).
- *
- * (c) Fabien Potencier <fabien@symfony.com> http://symfony.com
- */
- $pattern = '~^
- (LARAVEL_PROTOCOLS):// # protocol
- (((?:[\_\.\pL\pN-]|%[0-9A-Fa-f]{2})+:)?((?:[\_\.\pL\pN-]|%[0-9A-Fa-f]{2})+)@)? # basic auth
- (
- ([\pL\pN\pS\-\_\.])+(\.?([\pL\pN]|xn\-\-[\pL\pN-]+)+\.?) # a domain name
- | # or
- \d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3} # an IP address
- | # or
- \[
- (?:(?:(?:(?:(?:(?:(?:[0-9a-f]{1,4})):){6})(?:(?:(?:(?:(?:[0-9a-f]{1,4})):(?:(?:[0-9a-f]{1,4})))|(?:(?:(?:(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9]))\.){3}(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9])))))))|(?:(?:::(?:(?:(?:[0-9a-f]{1,4})):){5})(?:(?:(?:(?:(?:[0-9a-f]{1,4})):(?:(?:[0-9a-f]{1,4})))|(?:(?:(?:(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9]))\.){3}(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9])))))))|(?:(?:(?:(?:(?:[0-9a-f]{1,4})))?::(?:(?:(?:[0-9a-f]{1,4})):){4})(?:(?:(?:(?:(?:[0-9a-f]{1,4})):(?:(?:[0-9a-f]{1,4})))|(?:(?:(?:(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9]))\.){3}(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9])))))))|(?:(?:(?:(?:(?:(?:[0-9a-f]{1,4})):){0,1}(?:(?:[0-9a-f]{1,4})))?::(?:(?:(?:[0-9a-f]{1,4})):){3})(?:(?:(?:(?:(?:[0-9a-f]{1,4})):(?:(?:[0-9a-f]{1,4})))|(?:(?:(?:(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9]))\.){3}(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9])))))))|(?:(?:(?:(?:(?:(?:[0-9a-f]{1,4})):){0,2}(?:(?:[0-9a-f]{1,4})))?::(?:(?:(?:[0-9a-f]{1,4})):){2})(?:(?:(?:(?:(?:[0-9a-f]{1,4})):(?:(?:[0-9a-f]{1,4})))|(?:(?:(?:(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9]))\.){3}(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9])))))))|(?:(?:(?:(?:(?:(?:[0-9a-f]{1,4})):){0,3}(?:(?:[0-9a-f]{1,4})))?::(?:(?:[0-9a-f]{1,4})):)(?:(?:(?:(?:(?:[0-9a-f]{1,4})):(?:(?:[0-9a-f]{1,4})))|(?:(?:(?:(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9]))\.){3}(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9])))))))|(?:(?:(?:(?:(?:(?:[0-9a-f]{1,4})):){0,4}(?:(?:[0-9a-f]{1,4})))?::)(?:(?:(?:(?:(?:[0-9a-f]{1,4})):(?:(?:[0-9a-f]{1,4})))|(?:(?:(?:(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9]))\.){3}(?:(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9])))))))|(?:(?:(?:(?:(?:(?:[0-9a-f]{1,4})):){0,5}(?:(?:[0-9a-f]{1,4})))?::)(?:(?:[0-9a-f]{1,4})))|(?:(?:(?:(?:(?:(?:[0-9a-f]{1,4})):){0,6}(?:(?:[0-9a-f]{1,4})))?::))))
- \] # an IPv6 address
- )
- (:[0-9]+)? # a port (optional)
- (?:/ (?:[\pL\pN\-._\~!$&\'()*+,;=:@]|%[0-9A-Fa-f]{2})* )* # a path
- (?:\? (?:[\pL\pN\-._\~!$&\'\[\]()*+,;=:@/?]|%[0-9A-Fa-f]{2})* )? # a query (optional)
- (?:\# (?:[\pL\pN\-._\~!$&\'()*+,;=:@/?]|%[0-9A-Fa-f]{2})* )? # a fragment (optional)
- $~ixu';
- return preg_match(str_replace('LARAVEL_PROTOCOLS', $protocolList, $pattern), $value) > 0;
- }
- /**
- * Determine if a given value is a valid UUID.
- *
- * @param mixed $value
- * @return bool
- */
- public static function isUuid($value)
- {
- if (! is_string($value)) {
- return false;
- }
- return preg_match('/^[\da-fA-F]{8}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{12}$/D', $value) > 0;
- }
- /**
- * Determine if a given value is a valid ULID.
- *
- * @param mixed $value
- * @return bool
- */
- public static function isUlid($value)
- {
- if (! is_string($value)) {
- return false;
- }
- return Ulid::isValid($value);
- }
- /**
- * Convert a string to kebab case.
- *
- * @param string $value
- * @return string
- */
- public static function kebab($value)
- {
- return static::snake($value, '-');
- }
- /**
- * Return the length of the given string.
- *
- * @param string $value
- * @param string|null $encoding
- * @return int
- */
- public static function length($value, $encoding = null)
- {
- return mb_strlen($value, $encoding);
- }
- /**
- * Limit the number of characters in a string.
- *
- * @param string $value
- * @param int $limit
- * @param string $end
- * @return string
- */
- public static function limit($value, $limit = 100, $end = '...')
- {
- if (mb_strwidth($value, 'UTF-8') <= $limit) {
- return $value;
- }
- return rtrim(mb_strimwidth($value, 0, $limit, '', 'UTF-8')).$end;
- }
- /**
- * Convert the given string to lower-case.
- *
- * @param string $value
- * @return string
- */
- public static function lower($value)
- {
- return mb_strtolower($value, 'UTF-8');
- }
- /**
- * Limit the number of words in a string.
- *
- * @param string $value
- * @param int $words
- * @param string $end
- * @return string
- */
- public static function words($value, $words = 100, $end = '...')
- {
- preg_match('/^\s*+(?:\S++\s*+){1,'.$words.'}/u', $value, $matches);
- if (! isset($matches[0]) || static::length($value) === static::length($matches[0])) {
- return $value;
- }
- return rtrim($matches[0]).$end;
- }
- /**
- * Converts GitHub flavored Markdown into HTML.
- *
- * @param string $string
- * @param array $options
- * @return string
- */
- public static function markdown($string, array $options = [])
- {
- $converter = new GithubFlavoredMarkdownConverter($options);
- return (string) $converter->convert($string);
- }
- /**
- * Converts inline Markdown into HTML.
- *
- * @param string $string
- * @param array $options
- * @return string
- */
- public static function inlineMarkdown($string, array $options = [])
- {
- $environment = new Environment($options);
- $environment->addExtension(new GithubFlavoredMarkdownExtension());
- $environment->addExtension(new InlinesOnlyExtension());
- $converter = new MarkdownConverter($environment);
- return (string) $converter->convert($string);
- }
- /**
- * Masks a portion of a string with a repeated character.
- *
- * @param string $string
- * @param string $character
- * @param int $index
- * @param int|null $length
- * @param string $encoding
- * @return string
- */
- public static function mask($string, $character, $index, $length = null, $encoding = 'UTF-8')
- {
- if ($character === '') {
- return $string;
- }
- $segment = mb_substr($string, $index, $length, $encoding);
- if ($segment === '') {
- return $string;
- }
- $strlen = mb_strlen($string, $encoding);
- $startIndex = $index;
- if ($index < 0) {
- $startIndex = $index < -$strlen ? 0 : $strlen + $index;
- }
- $start = mb_substr($string, 0, $startIndex, $encoding);
- $segmentLen = mb_strlen($segment, $encoding);
- $end = mb_substr($string, $startIndex + $segmentLen);
- return $start.str_repeat(mb_substr($character, 0, 1, $encoding), $segmentLen).$end;
- }
- /**
- * Get the string matching the given pattern.
- *
- * @param string $pattern
- * @param string $subject
- * @return string
- */
- public static function match($pattern, $subject)
- {
- preg_match($pattern, $subject, $matches);
- if (! $matches) {
- return '';
- }
- return $matches[1] ?? $matches[0];
- }
- /**
- * Determine if a given string matches a given pattern.
- *
- * @param string|iterable<string> $pattern
- * @param string $value
- * @return bool
- */
- public static function isMatch($pattern, $value)
- {
- $value = (string) $value;
- if (! is_iterable($pattern)) {
- $pattern = [$pattern];
- }
- foreach ($pattern as $pattern) {
- $pattern = (string) $pattern;
- if (preg_match($pattern, $value) === 1) {
- return true;
- }
- }
- return false;
- }
- /**
- * Get the string matching the given pattern.
- *
- * @param string $pattern
- * @param string $subject
- * @return \Illuminate\Support\Collection
- */
- public static function matchAll($pattern, $subject)
- {
- preg_match_all($pattern, $subject, $matches);
- if (empty($matches[0])) {
- return collect();
- }
- return collect($matches[1] ?? $matches[0]);
- }
- /**
- * Pad both sides of a string with another.
- *
- * @param string $value
- * @param int $length
- * @param string $pad
- * @return string
- */
- public static function padBoth($value, $length, $pad = ' ')
- {
- if (function_exists('mb_str_pad')) {
- return mb_str_pad($value, $length, $pad, STR_PAD_BOTH);
- }
- $short = max(0, $length - mb_strlen($value));
- $shortLeft = floor($short / 2);
- $shortRight = ceil($short / 2);
- return mb_substr(str_repeat($pad, $shortLeft), 0, $shortLeft).
- $value.
- mb_substr(str_repeat($pad, $shortRight), 0, $shortRight);
- }
- /**
- * Pad the left side of a string with another.
- *
- * @param string $value
- * @param int $length
- * @param string $pad
- * @return string
- */
- public static function padLeft($value, $length, $pad = ' ')
- {
- if (function_exists('mb_str_pad')) {
- return mb_str_pad($value, $length, $pad, STR_PAD_LEFT);
- }
- $short = max(0, $length - mb_strlen($value));
- return mb_substr(str_repeat($pad, $short), 0, $short).$value;
- }
- /**
- * Pad the right side of a string with another.
- *
- * @param string $value
- * @param int $length
- * @param string $pad
- * @return string
- */
- public static function padRight($value, $length, $pad = ' ')
- {
- if (function_exists('mb_str_pad')) {
- return mb_str_pad($value, $length, $pad, STR_PAD_RIGHT);
- }
- $short = max(0, $length - mb_strlen($value));
- return $value.mb_substr(str_repeat($pad, $short), 0, $short);
- }
- /**
- * Parse a Class[@]method style callback into class and method.
- *
- * @param string $callback
- * @param string|null $default
- * @return array<int, string|null>
- */
- public static function parseCallback($callback, $default = null)
- {
- if (static::contains($callback, "@anonymous\0")) {
- if (static::substrCount($callback, '@') > 1) {
- return [
- static::beforeLast($callback, '@'),
- static::afterLast($callback, '@'),
- ];
- }
- return [$callback, $default];
- }
- return static::contains($callback, '@') ? explode('@', $callback, 2) : [$callback, $default];
- }
- /**
- * Get the plural form of an English word.
- *
- * @param string $value
- * @param int|array|\Countable $count
- * @return string
- */
- public static function plural($value, $count = 2)
- {
- return Pluralizer::plural($value, $count);
- }
- /**
- * Pluralize the last word of an English, studly caps case string.
- *
- * @param string $value
- * @param int|array|\Countable $count
- * @return string
- */
- public static function pluralStudly($value, $count = 2)
- {
- $parts = preg_split('/(.)(?=[A-Z])/u', $value, -1, PREG_SPLIT_DELIM_CAPTURE);
- $lastWord = array_pop($parts);
- return implode('', $parts).self::plural($lastWord, $count);
- }
- /**
- * Generate a random, secure password.
- *
- * @param int $length
- * @param bool $letters
- * @param bool $numbers
- * @param bool $symbols
- * @param bool $spaces
- * @return string
- */
- public static function password($length = 32, $letters = true, $numbers = true, $symbols = true, $spaces = false)
- {
- $password = new Collection();
- $options = (new Collection([
- 'letters' => $letters === true ? [
- 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k',
- 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
- 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G',
- 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R',
- 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',
- ] : null,
- 'numbers' => $numbers === true ? [
- '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
- ] : null,
- 'symbols' => $symbols === true ? [
- '~', '!', '#', '$', '%', '^', '&', '*', '(', ')', '-',
- '_', '.', ',', '<', '>', '?', '/', '\\', '{', '}', '[',
- ']', '|', ':', ';',
- ] : null,
- 'spaces' => $spaces === true ? [' '] : null,
- ]))->filter()->each(fn ($c) => $password->push($c[random_int(0, count($c) - 1)])
- )->flatten();
- $length = $length - $password->count();
- return $password->merge($options->pipe(
- fn ($c) => Collection::times($length, fn () => $c[random_int(0, $c->count() - 1)])
- ))->shuffle()->implode('');
- }
- /**
- * Find the multi-byte safe position of the first occurrence of a given substring in a string.
- *
- * @param string $haystack
- * @param string $needle
- * @param int $offset
- * @param string|null $encoding
- * @return int|false
- */
- public static function position($haystack, $needle, $offset = 0, $encoding = null)
- {
- return mb_strpos($haystack, (string) $needle, $offset, $encoding);
- }
- /**
- * Generate a more truly "random" alpha-numeric string.
- *
- * @param int $length
- * @return string
- */
- public static function random($length = 16)
- {
- return (static::$randomStringFactory ?? function ($length) {
- $string = '';
- while (($len = strlen($string)) < $length) {
- $size = $length - $len;
- $bytesSize = (int) ceil($size / 3) * 3;
- $bytes = random_bytes($bytesSize);
- $string .= substr(str_replace(['/', '+', '='], '', base64_encode($bytes)), 0, $size);
- }
- return $string;
- })($length);
- }
- /**
- * Set the callable that will be used to generate random strings.
- *
- * @param callable|null $factory
- * @return void
- */
- public static function createRandomStringsUsing(?callable $factory = null)
- {
- static::$randomStringFactory = $factory;
- }
- /**
- * Set the sequence that will be used to generate random strings.
- *
- * @param array $sequence
- * @param callable|null $whenMissing
- * @return void
- */
- public static function createRandomStringsUsingSequence(array $sequence, $whenMissing = null)
- {
- $next = 0;
- $whenMissing ??= function ($length) use (&$next) {
- $factoryCache = static::$randomStringFactory;
- static::$randomStringFactory = null;
- $randomString = static::random($length);
- static::$randomStringFactory = $factoryCache;
- $next++;
- return $randomString;
- };
- static::createRandomStringsUsing(function ($length) use (&$next, $sequence, $whenMissing) {
- if (array_key_exists($next, $sequence)) {
- return $sequence[$next++];
- }
- return $whenMissing($length);
- });
- }
- /**
- * Indicate that random strings should be created normally and not using a custom factory.
- *
- * @return void
- */
- public static function createRandomStringsNormally()
- {
- static::$randomStringFactory = null;
- }
- /**
- * Repeat the given string.
- *
- * @param string $string
- * @param int $times
- * @return string
- */
- public static function repeat(string $string, int $times)
- {
- return str_repeat($string, $times);
- }
- /**
- * Replace a given value in the string sequentially with an array.
- *
- * @param string $search
- * @param iterable<string> $replace
- * @param string $subject
- * @return string
- */
- public static function replaceArray($search, $replace, $subject)
- {
- if ($replace instanceof Traversable) {
- $replace = collect($replace)->all();
- }
- $segments = explode($search, $subject);
- $result = array_shift($segments);
- foreach ($segments as $segment) {
- $result .= self::toStringOr(array_shift($replace) ?? $search, $search).$segment;
- }
- return $result;
- }
- /**
- * Convert the given value to a string or return the given fallback on failure.
- *
- * @param mixed $value
- * @param string $fallback
- * @return string
- */
- private static function toStringOr($value, $fallback)
- {
- try {
- return (string) $value;
- } catch (Throwable $e) {
- return $fallback;
- }
- }
- /**
- * Replace the given value in the given string.
- *
- * @param string|iterable<string> $search
- * @param string|iterable<string> $replace
- * @param string|iterable<string> $subject
- * @param bool $caseSensitive
- * @return string|string[]
- */
- public static function replace($search, $replace, $subject, $caseSensitive = true)
- {
- if ($search instanceof Traversable) {
- $search = collect($search)->all();
- }
- if ($replace instanceof Traversable) {
- $replace = collect($replace)->all();
- }
- if ($subject instanceof Traversable) {
- $subject = collect($subject)->all();
- }
- return $caseSensitive
- ? str_replace($search, $replace, $subject)
- : str_ireplace($search, $replace, $subject);
- }
- /**
- * Replace the first occurrence of a given value in the string.
- *
- * @param string $search
- * @param string $replace
- * @param string $subject
- * @return string
- */
- public static function replaceFirst($search, $replace, $subject)
- {
- $search = (string) $search;
- if ($search === '') {
- return $subject;
- }
- $position = strpos($subject, $search);
- if ($position !== false) {
- return substr_replace($subject, $replace, $position, strlen($search));
- }
- return $subject;
- }
- /**
- * Replace the first occurrence of the given value if it appears at the start of the string.
- *
- * @param string $search
- * @param string $replace
- * @param string $subject
- * @return string
- */
- public static function replaceStart($search, $replace, $subject)
- {
- $search = (string) $search;
- if ($search === '') {
- return $subject;
- }
- if (static::startsWith($subject, $search)) {
- return static::replaceFirst($search, $replace, $subject);
- }
- return $subject;
- }
- /**
- * Replace the last occurrence of a given value in the string.
- *
- * @param string $search
- * @param string $replace
- * @param string $subject
- * @return string
- */
- public static function replaceLast($search, $replace, $subject)
- {
- $search = (string) $search;
- if ($search === '') {
- return $subject;
- }
- $position = strrpos($subject, $search);
- if ($position !== false) {
- return substr_replace($subject, $replace, $position, strlen($search));
- }
- return $subject;
- }
- /**
- * Replace the last occurrence of a given value if it appears at the end of the string.
- *
- * @param string $search
- * @param string $replace
- * @param string $subject
- * @return string
- */
- public static function replaceEnd($search, $replace, $subject)
- {
- $search = (string) $search;
- if ($search === '') {
- return $subject;
- }
- if (static::endsWith($subject, $search)) {
- return static::replaceLast($search, $replace, $subject);
- }
- return $subject;
- }
- /**
- * Replace the patterns matching the given regular expression.
- *
- * @param array|string $pattern
- * @param \Closure|string $replace
- * @param array|string $subject
- * @param int $limit
- * @return string|string[]|null
- */
- public static function replaceMatches($pattern, $replace, $subject, $limit = -1)
- {
- if ($replace instanceof Closure) {
- return preg_replace_callback($pattern, $replace, $subject, $limit);
- }
- return preg_replace($pattern, $replace, $subject, $limit);
- }
- /**
- * Remove any occurrence of the given string in the subject.
- *
- * @param string|iterable<string> $search
- * @param string|iterable<string> $subject
- * @param bool $caseSensitive
- * @return string
- */
- public static function remove($search, $subject, $caseSensitive = true)
- {
- if ($search instanceof Traversable) {
- $search = collect($search)->all();
- }
- return $caseSensitive
- ? str_replace($search, '', $subject)
- : str_ireplace($search, '', $subject);
- }
- /**
- * Reverse the given string.
- *
- * @param string $value
- * @return string
- */
- public static function reverse(string $value)
- {
- return implode(array_reverse(mb_str_split($value)));
- }
- /**
- * Begin a string with a single instance of a given value.
- *
- * @param string $value
- * @param string $prefix
- * @return string
- */
- public static function start($value, $prefix)
- {
- $quoted = preg_quote($prefix, '/');
- return $prefix.preg_replace('/^(?:'.$quoted.')+/u', '', $value);
- }
- /**
- * Convert the given string to upper-case.
- *
- * @param string $value
- * @return string
- */
- public static function upper($value)
- {
- return mb_strtoupper($value, 'UTF-8');
- }
- /**
- * Convert the given string to proper case.
- *
- * @param string $value
- * @return string
- */
- public static function title($value)
- {
- return mb_convert_case($value, MB_CASE_TITLE, 'UTF-8');
- }
- /**
- * Convert the given string to proper case for each word.
- *
- * @param string $value
- * @return string
- */
- public static function headline($value)
- {
- $parts = explode(' ', $value);
- $parts = count($parts) > 1
- ? array_map([static::class, 'title'], $parts)
- : array_map([static::class, 'title'], static::ucsplit(implode('_', $parts)));
- $collapsed = static::replace(['-', '_', ' '], '_', implode('_', $parts));
- return implode(' ', array_filter(explode('_', $collapsed)));
- }
- /**
- * Convert the given string to APA-style title case.
- *
- * See: https://apastyle.apa.org/style-grammar-guidelines/capitalization/title-case
- *
- * @param string $value
- * @return string
- */
- public static function apa($value)
- {
- if (trim($value) === '') {
- return $value;
- }
- $minorWords = [
- 'and', 'as', 'but', 'for', 'if', 'nor', 'or', 'so', 'yet', 'a', 'an',
- 'the', 'at', 'by', 'for', 'in', 'of', 'off', 'on', 'per', 'to', 'up', 'via',
- 'et', 'ou', 'un', 'une', 'la', 'le', 'les', 'de', 'du', 'des', 'par', 'à',
- ];
- $endPunctuation = ['.', '!', '?', ':', '—', ','];
- $words = preg_split('/\s+/', $value, -1, PREG_SPLIT_NO_EMPTY);
- for ($i = 0; $i < count($words); $i++) {
- $lowercaseWord = mb_strtolower($words[$i]);
- if (str_contains($lowercaseWord, '-')) {
- $hyphenatedWords = explode('-', $lowercaseWord);
- $hyphenatedWords = array_map(function ($part) use ($minorWords) {
- return (in_array($part, $minorWords) && mb_strlen($part) <= 3)
- ? $part
- : mb_strtoupper(mb_substr($part, 0, 1)).mb_substr($part, 1);
- }, $hyphenatedWords);
- $words[$i] = implode('-', $hyphenatedWords);
- } else {
- if (in_array($lowercaseWord, $minorWords) &&
- mb_strlen($lowercaseWord) <= 3 &&
- ! ($i === 0 || in_array(mb_substr($words[$i - 1], -1), $endPunctuation))) {
- $words[$i] = $lowercaseWord;
- } else {
- $words[$i] = mb_strtoupper(mb_substr($lowercaseWord, 0, 1)).mb_substr($lowercaseWord, 1);
- }
- }
- }
- return implode(' ', $words);
- }
- /**
- * Get the singular form of an English word.
- *
- * @param string $value
- * @return string
- */
- public static function singular($value)
- {
- return Pluralizer::singular($value);
- }
- /**
- * Generate a URL friendly "slug" from a given string.
- *
- * @param string $title
- * @param string $separator
- * @param string|null $language
- * @param array<string, string> $dictionary
- * @return string
- */
- public static function slug($title, $separator = '-', $language = 'en', $dictionary = ['@' => 'at'])
- {
- $title = $language ? static::ascii($title, $language) : $title;
- // Convert all dashes/underscores into separator
- $flip = $separator === '-' ? '_' : '-';
- $title = preg_replace('!['.preg_quote($flip).']+!u', $separator, $title);
- // Replace dictionary words
- foreach ($dictionary as $key => $value) {
- $dictionary[$key] = $separator.$value.$separator;
- }
- $title = str_replace(array_keys($dictionary), array_values($dictionary), $title);
- // Remove all characters that are not the separator, letters, numbers, or whitespace
- $title = preg_replace('![^'.preg_quote($separator).'\pL\pN\s]+!u', '', static::lower($title));
- // Replace all separator characters and whitespace by a single separator
- $title = preg_replace('!['.preg_quote($separator).'\s]+!u', $separator, $title);
- return trim($title, $separator);
- }
- /**
- * Convert a string to snake case.
- *
- * @param string $value
- * @param string $delimiter
- * @return string
- */
- public static function snake($value, $delimiter = '_')
- {
- $key = $value;
- if (isset(static::$snakeCache[$key][$delimiter])) {
- return static::$snakeCache[$key][$delimiter];
- }
- if (! ctype_lower($value)) {
- $value = preg_replace('/\s+/u', '', ucwords($value));
- $value = static::lower(preg_replace('/(.)(?=[A-Z])/u', '$1'.$delimiter, $value));
- }
- return static::$snakeCache[$key][$delimiter] = $value;
- }
- /**
- * Remove all "extra" blank space from the given string.
- *
- * @param string $value
- * @return string
- */
- public static function squish($value)
- {
- return preg_replace('~(\s|\x{3164}|\x{1160})+~u', ' ', preg_replace('~^[\s\x{FEFF}]+|[\s\x{FEFF}]+$~u', '', $value));
- }
- /**
- * Determine if a given string starts with a given substring.
- *
- * @param string $haystack
- * @param string|iterable<string> $needles
- * @return bool
- */
- public static function startsWith($haystack, $needles)
- {
- if (! is_iterable($needles)) {
- $needles = [$needles];
- }
- foreach ($needles as $needle) {
- if ((string) $needle !== '' && str_starts_with($haystack, $needle)) {
- return true;
- }
- }
- return false;
- }
- /**
- * Convert a value to studly caps case.
- *
- * @param string $value
- * @return string
- */
- public static function studly($value)
- {
- $key = $value;
- if (isset(static::$studlyCache[$key])) {
- return static::$studlyCache[$key];
- }
- $words = explode(' ', static::replace(['-', '_'], ' ', $value));
- $studlyWords = array_map(fn ($word) => static::ucfirst($word), $words);
- return static::$studlyCache[$key] = implode($studlyWords);
- }
- /**
- * Returns the portion of the string specified by the start and length parameters.
- *
- * @param string $string
- * @param int $start
- * @param int|null $length
- * @param string $encoding
- * @return string
- */
- public static function substr($string, $start, $length = null, $encoding = 'UTF-8')
- {
- return mb_substr($string, $start, $length, $encoding);
- }
- /**
- * Returns the number of substring occurrences.
- *
- * @param string $haystack
- * @param string $needle
- * @param int $offset
- * @param int|null $length
- * @return int
- */
- public static function substrCount($haystack, $needle, $offset = 0, $length = null)
- {
- if (! is_null($length)) {
- return substr_count($haystack, $needle, $offset, $length);
- }
- return substr_count($haystack, $needle, $offset);
- }
- /**
- * Replace text within a portion of a string.
- *
- * @param string|string[] $string
- * @param string|string[] $replace
- * @param int|int[] $offset
- * @param int|int[]|null $length
- * @return string|string[]
- */
- public static function substrReplace($string, $replace, $offset = 0, $length = null)
- {
- if ($length === null) {
- $length = strlen($string);
- }
- return substr_replace($string, $replace, $offset, $length);
- }
- /**
- * Swap multiple keywords in a string with other keywords.
- *
- * @param array $map
- * @param string $subject
- * @return string
- */
- public static function swap(array $map, $subject)
- {
- return strtr($subject, $map);
- }
- /**
- * Take the first or last {$limit} characters of a string.
- *
- * @param string $string
- * @param int $limit
- * @return string
- */
- public static function take($string, int $limit): string
- {
- if ($limit < 0) {
- return static::substr($string, $limit);
- }
- return static::substr($string, 0, $limit);
- }
- /**
- * Convert the given string to Base64 encoding.
- *
- * @param string $string
- * @return string
- */
- public static function toBase64($string): string
- {
- return base64_encode($string);
- }
- /**
- * Decode the given Base64 encoded string.
- *
- * @param string $string
- * @param bool $strict
- * @return string|false
- */
- public static function fromBase64($string, $strict = false)
- {
- return base64_decode($string, $strict);
- }
- /**
- * Make a string's first character lowercase.
- *
- * @param string $string
- * @return string
- */
- public static function lcfirst($string)
- {
- return static::lower(static::substr($string, 0, 1)).static::substr($string, 1);
- }
- /**
- * Make a string's first character uppercase.
- *
- * @param string $string
- * @return string
- */
- public static function ucfirst($string)
- {
- return static::upper(static::substr($string, 0, 1)).static::substr($string, 1);
- }
- /**
- * Split a string into pieces by uppercase characters.
- *
- * @param string $string
- * @return string[]
- */
- public static function ucsplit($string)
- {
- return preg_split('/(?=\p{Lu})/u', $string, -1, PREG_SPLIT_NO_EMPTY);
- }
- /**
- * Get the number of words a string contains.
- *
- * @param string $string
- * @param string|null $characters
- * @return int
- */
- public static function wordCount($string, $characters = null)
- {
- return str_word_count($string, 0, $characters);
- }
- /**
- * Wrap a string to a given number of characters.
- *
- * @param string $string
- * @param int $characters
- * @param string $break
- * @param bool $cutLongWords
- * @return string
- */
- public static function wordWrap($string, $characters = 75, $break = "\n", $cutLongWords = false)
- {
- return wordwrap($string, $characters, $break, $cutLongWords);
- }
- /**
- * Generate a UUID (version 4).
- *
- * @return \Ramsey\Uuid\UuidInterface
- */
- public static function uuid()
- {
- return static::$uuidFactory
- ? call_user_func(static::$uuidFactory)
- : Uuid::uuid4();
- }
- /**
- * Generate a time-ordered UUID.
- *
- * @return \Ramsey\Uuid\UuidInterface
- */
- public static function orderedUuid()
- {
- if (static::$uuidFactory) {
- return call_user_func(static::$uuidFactory);
- }
- $factory = new UuidFactory;
- $factory->setRandomGenerator(new CombGenerator(
- $factory->getRandomGenerator(),
- $factory->getNumberConverter()
- ));
- $factory->setCodec(new TimestampFirstCombCodec(
- $factory->getUuidBuilder()
- ));
- return $factory->uuid4();
- }
- /**
- * Set the callable that will be used to generate UUIDs.
- *
- * @param callable|null $factory
- * @return void
- */
- public static function createUuidsUsing(?callable $factory = null)
- {
- static::$uuidFactory = $factory;
- }
- /**
- * Set the sequence that will be used to generate UUIDs.
- *
- * @param array $sequence
- * @param callable|null $whenMissing
- * @return void
- */
- public static function createUuidsUsingSequence(array $sequence, $whenMissing = null)
- {
- $next = 0;
- $whenMissing ??= function () use (&$next) {
- $factoryCache = static::$uuidFactory;
- static::$uuidFactory = null;
- $uuid = static::uuid();
- static::$uuidFactory = $factoryCache;
- $next++;
- return $uuid;
- };
- static::createUuidsUsing(function () use (&$next, $sequence, $whenMissing) {
- if (array_key_exists($next, $sequence)) {
- return $sequence[$next++];
- }
- return $whenMissing();
- });
- }
- /**
- * Always return the same UUID when generating new UUIDs.
- *
- * @param \Closure|null $callback
- * @return \Ramsey\Uuid\UuidInterface
- */
- public static function freezeUuids(?Closure $callback = null)
- {
- $uuid = Str::uuid();
- Str::createUuidsUsing(fn () => $uuid);
- if ($callback !== null) {
- try {
- $callback($uuid);
- } finally {
- Str::createUuidsNormally();
- }
- }
- return $uuid;
- }
- /**
- * Indicate that UUIDs should be created normally and not using a custom factory.
- *
- * @return void
- */
- public static function createUuidsNormally()
- {
- static::$uuidFactory = null;
- }
- /**
- * Generate a ULID.
- *
- * @param \DateTimeInterface|null $time
- * @return \Symfony\Component\Uid\Ulid
- */
- public static function ulid($time = null)
- {
- if (static::$ulidFactory) {
- return call_user_func(static::$ulidFactory);
- }
- if ($time === null) {
- return new Ulid();
- }
- return new Ulid(Ulid::generate($time));
- }
- /**
- * Indicate that ULIDs should be created normally and not using a custom factory.
- *
- * @return void
- */
- public static function createUlidsNormally()
- {
- static::$ulidFactory = null;
- }
- /**
- * Set the callable that will be used to generate ULIDs.
- *
- * @param callable|null $factory
- * @return void
- */
- public static function createUlidsUsing(?callable $factory = null)
- {
- static::$ulidFactory = $factory;
- }
- /**
- * Set the sequence that will be used to generate ULIDs.
- *
- * @param array $sequence
- * @param callable|null $whenMissing
- * @return void
- */
- public static function createUlidsUsingSequence(array $sequence, $whenMissing = null)
- {
- $next = 0;
- $whenMissing ??= function () use (&$next) {
- $factoryCache = static::$ulidFactory;
- static::$ulidFactory = null;
- $ulid = static::ulid();
- static::$ulidFactory = $factoryCache;
- $next++;
- return $ulid;
- };
- static::createUlidsUsing(function () use (&$next, $sequence, $whenMissing) {
- if (array_key_exists($next, $sequence)) {
- return $sequence[$next++];
- }
- return $whenMissing();
- });
- }
- /**
- * Always return the same ULID when generating new ULIDs.
- *
- * @param Closure|null $callback
- * @return Ulid
- */
- public static function freezeUlids(?Closure $callback = null)
- {
- $ulid = Str::ulid();
- Str::createUlidsUsing(fn () => $ulid);
- if ($callback !== null) {
- try {
- $callback($ulid);
- } finally {
- Str::createUlidsNormally();
- }
- }
- return $ulid;
- }
- /**
- * Remove all strings from the casing caches.
- *
- * @return void
- */
- public static function flushCache()
- {
- static::$snakeCache = [];
- static::$camelCache = [];
- static::$studlyCache = [];
- }
- }
|