<?php
$str = '按时鉴定会肺结核士大夫看见';
$find_str = '大夫';

echo isExist( $str, $find_str );

function isExist( $str, $find_str )
{
    for ( $i=0; $i < strlen( $str ); $i++ ) 
    {
        if( $str[$i] == $find_str[0] )
        {
            $s = '';
            $s.= $str[$i];
            for( $j = 1; $j < strlen( $find_str ); $j++ )
            {
                if( $i+$j > strlen( $str ) )
                {
                    break;
                }
                $s.= $str[$i+$j];
            }
            if( $s == $find_str )
            {
                return '存在';
            }
        }
    }
    return '不存在';
}

?>

 

 

文章摘自:https://www.cnblogs.com/laowenBlog/p/11367895.html

 posted on 2020-05-25 14:05  三哥-Noble  阅读(265)  评论(0编辑  收藏  举报
TOP