The following example saves me in the variable $ min the smallest number in the list that is in the array
$array = array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
$min=min($array);
echo"$min";
My question: What I need is for me to look for the smallest number after 1, so I can indicate the variable $ min that the smallest number is 1 and not 0 as it is the previous case. I hope you understand. Thank you very much.