PHP Snippets

Check If String Ends With Another String

Andrei Surdu Andrei Surdu ·

This function checks if a given string ends with another string. It uses substr to get the ending part of the string that’s the same length as the substring, then checks if it’s equal to the substring. It’s useful for checking if a string has a certain ending, like a file extension.

PHP Function:

function endsWith($str, $substr) { return substr($str, -strlen($substr)) === $substr; }

// Example
echo endsWith('Hello, World!', 'World!'); // true
echo endsWith('Hello, World!', 'Hello'); // false

Comments

Share your thoughts and join the conversation

Loading comments...

Leave a Comment

Your email will not be published

Comments are moderated and will appear after approval

0/2000