ジャンプ先: 概要. 戻り値. 関連. MEL 例.
int endsWith(string $s, string $suffix)
なし
endsWith("abc", "bc"); // Result: 1 // endsWith("abc", "ab"); // Result: 0 // endsWith("abc", ""); // Result: 1 //