Go to: Synopsis. Return value. Related. MEL examples.
int endsWith(string $s, string $suffix)
None
endsWith("abc", "bc"); // Result: 1 // endsWith("abc", "ab"); // Result: 0 // endsWith("abc", ""); // Result: 1 //