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 TR
array(3,0,0)
if (max(array(3,0,0)) > 0) echo 'greater than 0';