<?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
本文来自博客园,作者:三哥-Noble,转载请注明原文链接:https://www.cnblogs.com/Noble-zeng/p/12956576.html