endsWith
Returns true if the string ends with $substring, false otherwise. By default, the comparison is case-sensitive, but can be made insensitive by setting $caseSensitive to false.
Description
bool endsWith(string $substring, bool $caseSensitive = 1)
Parameters
-
string $substring
The substring to look for - bool $caseSensitive
Whether or not to enforce case-sensitivity
Return Value
bool
Whether or not $str ends with $substring