Without looping through each value in an array, is there any shortcut to checking whether it contains values over 0?
Eg
array(3,0,0)
would be TRUE
array(0,0,0)
would be FALSE
array(-2,0,-3)
would be FALSE
if (max(array(3,0,0)) > 0) echo 'greater than 0';