欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-06-17 12:13:58
...
编程程序php网页

$ss = 2;
$max = 1000;
$arr = array();
echo $max."以内的素数为:";
while ($ss $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 "
";
?>