Php str_ends_with memeriksa apakah string berakhir dengan substring yang diberikan
<?php
if (str_ends_with('abc', '')) {
echo "All strings end with the empty string";
}
?>
SAMER SAEID