STR_CONTAINS déterminer si une chaîne contient une sous-chaîne donnée

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