我想计算我的新数组有多少索引。
下面是我的代码的截图。紫色框中的值是我的输出。我的 $High 数组列出了我的 accu.php 和 new.php 中的值(在要求内)。
现在,想使用名为 $result 的新数组列出我的 $High 数组的唯一值。然后,我想计算我的 $result 数组的索引。我已经尝试了 count() 和 sizeof() 函数,它仍然显示 9,如下所示。
下面是我的代码:
<?php
require("accu.php");
require("new.php");
$High = array ($Accu_High1,$Accu_High2,$Accu_High3,$Accu_High4,$Accu_High5,$new1,$new2,$new3,$new4,$new5,$new6,$new7,$new8,$new9,$new0);
$result = array_unique($High); // remove similar
$count = sizeof($result); //count
for ($int = 0; $int<=14; $int++)
{
echo "<b>$int</b> $High[$int]<br>";
}
echo "<br><br><br><b>$count</b>";
?>
下面是我的输出:
0 22
1 32
2 33
3 32
4 32
5 30
6 31
7 31
8 31
9 30
10 23
11 30
12 31
13 30
14 30
9