mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
393 B
393 B
date | id | title |
---|---|---|
2020-11-16 | 14687f1c-7f7a-435f-824a-ab14bef7c12b | containsAny() |
Description
Checks if string contains at least one of all passed strings.
Syntax
use function Symfony\Component\String\u;
u('aeiou')->containsAny('a'); // true
u('aeiou')->containsAny(['ab', 'efg']); // false
u('aeiou')->containsAny(['eio', 'foo', 'z']); // true