星期三, 12月 15, 2004

無聊的if~

我真無聊~

// grap user albumDir
if($this->next_record()
&& ($allpic<_MAX_UP_PIC_NUM_)
// is file send to server
&& is_uploaded_file($_FILES['photo']['tmp_name'])
// is this image file type
&& $this->checkFileType($_FILES['photo']['type'])
// is this file size less than MAX_UP_SIZE
&& $_FILES['photo']['size']<(_MAX_UP_SIZE_-1)
// check if this img file is cwyk jpeg type
&& ( ($imgInfo = getimagesize($_FILES['photo']['tmp_name'])) &&
( ($imgInfo['mime']=='image/jpeg')?($imgInfo['channels']==3):"TURE" ) )
){



}