$v = validated_integer($user_input); // the user input 08
if($v == 0 || $v === 0) { // let's just be safe
// the Wrong Thing happens
}
This is a contrived example, sure. But you've never checked to see if a user input the number 0? Or a non-zero, positive integer?