时间:2021-07-01 10:21:17 帮助过:33人阅读
代码如下:
function look($str)
{
$len = strlen($str);
$count=0;
$result='';
$temp=$str[0];
for($i=0;$i<$len;$i++)
{
if($temp!=$str[$i])
{
$result.=$count.$temp;
$temp = $str[$i];
$count=1;
}
else
{
$count++;
}
}
$result.=$count.$temp;
return $result;
}
$test_str = "1";
echo $test_str.'';
for($i=0;$i<10;$i++)
{
$test_str=look($test_str);
print $test_str."";
}
以上就介绍了hotmail outlook Look And Say 序列php实现代码,包括了hotmail outlook方面的内容,希望对PHP教程有兴趣的朋友有所帮助。