美文网首页
PHP类似startWith()和endWith()的写法

PHP类似startWith()和endWith()的写法

作者: AI视客 | 来源:发表于2020-04-10 11:30 被阅读0次
    function startsWith($haystack, $needle)
    {
         $length = strlen($needle);
         return (substr($haystack, 0, $length) === $needle);
    }
    
    function endsWith($haystack, $needle)
    {
        $length = strlen($needle);
        if ($length == 0) {
            return true;
        }
    
        return (substr($haystack, -$length) === $needle);
    }
    

    我的博客即将同步至腾讯云+社区,邀请大家一同入驻:https://cloud.tencent.com/developer/support-plan?invite_code=3rv3lfsff2asw

    相关文章

      网友评论

          本文标题:PHP类似startWith()和endWith()的写法

          本文链接:https://www.haomeiwen.com/subject/npolmhtx.html