Laravel 8 is {#collection-method}
2021-07-19 10:32 更新
is
方法用于判断字符串是否与指定模式匹配。星号 *
用于表示通配符:
use Illuminate\Support\Str;
$matches = Str::of('foobar')->is('foo*');
// true
$matches = Str::of('foobar')->is('baz*');
// false
以上内容是否对您有帮助:
更多建议: