当前位置:Gxlcms > PHP教程 > 编程-求解析下面这个php程序,感觉这个程序效率很低,求解答。

编程-求解析下面这个php程序,感觉这个程序效率很低,求解答。

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

编程程序php网页

$ss = 2;
$max = 1000;
$arr = array();
echo $max."以内的素数为:";
while ($ss < $max):
$boo = false;
foreach ($arr as $value):
if ($ss % $value == 0):
$boo = true;
break;
endif;
endforeach;
if (!$boo):
echo $ss." ";
$arr[count($arr)] = $ss;
endif;
$ss++;
endwhile;
echo "
";
?>

人气教程排行