在我的数据库中,我有“最大文件”,但我想将其设置为0,无限制。
因此我需要一种方法
if ($count >= $max){
//a value of 0 in $max should not be here
} else {
//but here
}
这是可能的,还是我必须为0创建排除?
答案 0 :(得分:2)
if (($max !== 0) && ($count >= $max) ){
答案 1 :(得分:2)
if($max && ($count >= $max)) ....
答案 2 :(得分:0)
if (!empty($max) && $count >= $max ) { ...