Php str_ends_with проверяет, заканчивается ли строка данной подстрокой

<?php
if (str_ends_with('abc', '')) {
    echo "All strings end with the empty string";
}
?>
SAMER SAEID