美文网首页
php字符串函数的使用

php字符串函数的使用

作者: 苍老师的眼泪 | 来源:发表于2020-12-07 22:38 被阅读0次
    <?php
    
        //分别用substr、strpos、substr_compare
        //编写start_with、end_with函数
    
        function start1($haystack, $needle) {
            return substr($haystack, 0, mb_strlen($needle)) === $needle;
        }
    
        function start2($haystack, $needle) {
            return strpos($haystack, $needle) === 0;
        }
    
        function start3($haystack, $needle) {
            return substr_compare($haystack, $needle, 0, mb_strlen($needle)) === 0;
        }
    
        function end1($haystack, $needle) {
            return substr($haystack, -mb_strlen($needle)) === $needle;
        }
    
        function end2($haystack, $needle) {
            return strpos($haystack, $needle) === (mb_strlen($haystack) - mb_strlen($needle));
        }
        
        function end3($haystack, $needle) {
            return substr_compare($haystack, $needle, -mb_strlen($needle)) === 0;
        }
    

    相关文章

      网友评论

          本文标题:php字符串函数的使用

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