当前位置:Gxlcms > PHP教程 > PHP最长单一子串

PHP最长单一子串

时间:2021-07-01 10:21:17 帮助过:18人阅读

$s='abcccddddddcdefg';
$max='';
while($s!=''){
    $i=0; 
    while($i$s) && $s[$i]==$s[0]) $i++;
    if ($i>strlen($max)){
        $max=substr($s,0,$i);
    }                       
    $s=substr($s,$i);
}
echo$max;
?>

').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('
  • ').text(i)); }; $numbering.fadeIn(1700); }); });

    以上就介绍了PHP最长单一子串,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

  • 人气教程排行