📌  相关文章
📜  php 检查字符串是否以 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:44.050000             🧑  作者: Mango

代码示例4
function endsWith( $haystack, $needle ) {
    $length = strlen( $needle );
    if( !$length ) {
        return true;
    }
    return substr( $haystack, -$length ) === $needle;
}