How to get the minimum value from an array containing some null values ββin PHP. I have such an array
array(10,20,null,60)
Since this array contains null, so the php min function gives 0 as the minimum value, but I need, for example, a minimum of 10. Can anyone help me?
arrays php
user3252359
source share