str_contains определяет, содержит ли строка заданную подстроение

<?php
if (str_contains('abc', '')) {
    echo "Checking the existence of the empty string will always return true";
}
?>
SAMER SAEID