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