Laravel 8 Str::is() {#collection-method}
Str::is
方法用来判断字符串是否与指定模式匹配。星号 *
可用于表示通配符:
use Illuminate\Support\Str;
$matches = Str::is('foo*', 'foobar');
// true
$matches = Str::is('baz*', 'foobar');
// false
Str::is
方法用来判断字符串是否与指定模式匹配。星号 *
可用于表示通配符:
use Illuminate\Support\Str;
$matches = Str::is('foo*', 'foobar');
// true
$matches = Str::is('baz*', 'foobar');
// false