profileRyan KesPGP keyI build stuffEmailGithubTwitterLast.fmMastodonMatrix

reverse()

Description

Flips the order of the string contents.

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

Related