查找缺少的数字和最小值和最大值并查找重复值计数而不使用 PHP 内置 functions.Checked 很多但不适合我

FInd Missing number and MIN and MAX Value and find Dublicate values count WITHOUT using PHP inbuild functions.Checked many but no suitable for me

我有下面的数组

$inputArray = array(1, 2, 5, 7,2);

my code

$inputArray = array(1, 2, 5, 7,2);
$min = 0;
$max = 0;
foreach($inputArray as $inputValue){
    if ($inputValue >= $min) { 
       $max = $inputValue; // maximum value
    }
}

foreach($inputArray as $inputValue){
    if ($max >= $inputValue) { 
       $min = $inputValue; // minimum value
    }
}
echo $max;

注意:我们不应该使用单个 PHP 内置函数。

$inputArray = array(1, 2, 5, 7,2);
$i=0;
foreach($inputArray as $inputValue){
   if($i == 0){
      $min = $inputValue;
      $max = $inputValue;
   }
   if($inputValue > $max){
      $max = $inputValue;
   }
   if($inputValue < $min){
      $min = $inputValue;
   }
   $i +=1;
}
echo $i ."<br>"; // array count

echo $min ."<br>";

echo $max ."<br>";