Laravel 8 Str::containsAll() {#collection-method}
2021-07-19 10:26 更新
Str::containsAll
方法用于判断指定字符串是否包含指定数组中的所有值:
use Illuminate\Support\Str;
$containsAll = Str::containsAll('This is my name', ['my', 'name']);
// true
以上内容是否对您有帮助:
更多建议: