美好的一天,我的任务是在 php 中创建一个变量计数器。我卡在最后一个阶段。那就是显示正值的总数。我在 php 中使用了 count(),但它没有给我总数。有没有一种方法可以得到 count() 的值的总和?
if ($start < $end)
{
for($ctr = $start; $ctr<=$end; $ctr++)
{
if ($ctr == 0)
{
echo " <br/ >there is a zero <br/ >";
}
else if ($ctr <=0)
{
echo count($ctr) . " negative value" ;
}
else if($ctr >=0)
{
echo count($ctr) . " positive value ";
}
}