Php str_starts_with memeriksa apakah string dimulai dengan substring yang diberikan

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