How to Installing The OMP - Theme

From AshVisual Documentations
Revision as of 18:14, 8 March 2025 by AshVisual (talk | contribs) (Created page with "<syntaxhighlight lang="php"> if (! function_exists('str_contains')) { * * Polyfill of str_contains(): function str_contains(string $haystack, string $needle): bool { return empty($needle) || strpos($haystack, $needle) !== false; } } </syntaxhighlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
if (! function_exists('str_contains')) {
    /**
     * Polyfill of str_contains()
     */
    function str_contains(string $haystack, string $needle): bool
    {
        return empty($needle) || strpos($haystack, $needle) !== false;
    }
}