I want to find the minimum value using the function count (0) min min () in php, but I need to get zero, how can I find out with a zero value?
$a = 0; $b = 3; $c= 4, $d = 8; $minvalue = min($a,$b,$c,$d);
the expected result I want should be 3, but it gives me zero,
how can I neglect zero, I want to get a result with a zero value, please help me do this. thank you in advance
source share