mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 03:26:22 +00:00
391 B
391 B
date | id | title |
---|---|---|
20201116 | 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