Skip to content

Update strings.md #661

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 22, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions strings.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
git: 4bb1622040e31b4727b3399946d1aec0a587c59c
git: 37b513606d6566439920facd4603b6b251dea105
---

# Строки
Expand Down Expand Up @@ -618,7 +618,7 @@ $result = Str::doesntStartWith('This is my name', 'That');
Если передан массив возможных значений, метод `doesntStartWith` вернет `true`, если строка не начинается ни с одного из заданных значений:

```php
$result = Str::doesntStartWith('This is my name', ['This', 'That', 'There']);
$result = Str::doesntStartWith('This is my name', ['What', 'That', 'There']);

// true
```
Expand Down Expand Up @@ -2305,7 +2305,7 @@ $result = Str::of('This is my name')->doesntStartWith('That');
```php
use Illuminate\Support\Str;

$result = Str::of('This is my name')->doesntStartWith(['This', 'That', 'There']);
$result = Str::of('This is my name')->doesntStartWith(['What', 'That', 'There']);

// true
```
Expand Down