Blame view

public/vendor/illuminate/support/Stringable.php 16 KB
86143e36f   Андрей Ларионов   Коммит вторник
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
  <?php
  
  namespace Illuminate\Support;
  
  use Closure;
  use Illuminate\Support\Traits\Macroable;
  use Symfony\Component\VarDumper\VarDumper;
  
  class Stringable
  {
      use Macroable;
  
      /**
       * The underlying string value.
       *
       * @var string
       */
      protected $value;
  
      /**
       * Create a new instance of the class.
       *
       * @param  string  $value
       * @return void
       */
      public function __construct($value = '')
      {
          $this->value = (string) $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 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  string|array  $needles
       * @return bool
       */
      public function contains($needles)
      {
          return Str::contains($this->value, $needles);
      }
  
      /**
       * Determine if a given string contains all array values.
       *
       * @param  array  $needles
       * @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  string|array  $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 \Illuminate\Support\Collection
       */
      public function explode($delimiter, $limit = PHP_INT_MAX)
      {
          return collect(explode($delimiter, $this->value, $limit));
      }
  
      /**
       * Split a string using a regular expression.
       *
       * @param  string  $pattern
       * @param  int  $limit
       * @param  int  $flags
       * @return \Illuminate\Support\Collection
       */
      public function split($pattern, $limit = -1, $flags = 0)
      {
          $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  string|array  $pattern
       * @return bool
       */
      public function is($pattern)
      {
          return Str::is($pattern, $this->value);
      }
  
      /**
       * Determine if a given string is 7 bit ASCII.
       *
       * @return bool
       */
      public function isAscii()
      {
          return Str::isAscii($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|null
       */
      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 \Illuminate\Support\Collection
       */
      public function matchAll($pattern)
      {
          preg_match_all($pattern, $this->value, $matches);
  
          if (empty($matches[0])) {
              return collect();
          }
  
          return collect($matches[1] ?? $matches[0]);
      }
  
      /**
       * 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  string|null  $default
       * @return array
       */
      public function parseCallback($default = null)
      {
          return Str::parseCallback($this->value, $default);
      }
  
      /**
       * 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);
      }
  
      /**
       * 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
       * @param  array  $replace
       * @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));
      }
  
      /**
       * 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  string|null  $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  string|array  $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 string specified by the start and length parameters.
       *
       * @param  int  $start
       * @param  int|null  $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  int|null  $offset
       * @param  int|null  $length
       * @return int
       */
      public function substrCount($needle, $offset = null, $length = null)
      {
          return Str::substrCount($this->value, $needle, $offset, $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));
      }
  
      /**
       * Apply the callback's string changes if the given "value" is true.
       *
       * @param  mixed  $value
       * @param  callable  $callback
       * @param  callable|null  $default
       * @return mixed|$this
       */
      public function when($value, $callback, $default = null)
      {
          if ($value) {
              return $callback($this, $value) ?: $this;
          } elseif ($default) {
              return $default($this, $value) ?: $this;
          }
  
          return $this;
      }
  
      /**
       * 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;
      }
  
      /**
       * 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));
      }
  
      /**
       * Dump the string.
       *
       * @return $this
       */
      public function dump()
      {
          VarDumper::dump($this->value);
  
          return $this;
      }
  
      /**
       * Dump the string and end the script.
       *
       * @return void
       */
      public function dd()
      {
          $this->dump();
  
          exit(1);
      }
  
      /**
       * 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;
      }
  }