str_contains

Supported Versions: PHP 8
Determine if a string contains a given substring
<?php str_contains(string $haystack, string $needle): bool
<?php         $file = (string)file_get_contents($throwable->getFile());



        if (! str_contains($file, '=======')) {

            return false;

        }

        if (! str_contains($file, '>>>>>>>')) {
<?php         if (! str_contains($file, '=======')) {

            return false;

        }

        if (! str_contains($file, '>>>>>>>')) {

            return false;

        }