Laravel 8 match {#collection-method}
2021-07-19 10:33 更新
match
方法将会返回字符串和指定正则表达式匹配的部分:
use Illuminate\Support\Str;
$result = Str::of('foo bar')->match('/bar/');
// 'bar'
$result = Str::of('foo bar')->match('/foo (.*)/');
// 'bar'
以上内容是否对您有帮助:
更多建议: