<slide>
<title>New String Functions</title>

<example>
&lt;?php
function str_contains(
    string $haystack,
    string $needle
): bool {}

function str_starts_with(
    string $haystack,
    string $needle
): bool {}

function str_ends_with(
    string $haystack,
    string $needle
): bool {}
</example>

<blurb class="centre">No multi-byte variants, so use UTF-8</blurb>
</slide>
