如何在php中验证图像数组

时间:2010-07-19 06:32:17

标签: php smarty

<input name= "p_image[]" type="file" id="p_image[]">

我需要用户上传至少一张图片,如果不是,则显示错误..

2 个答案:

答案 0 :(得分:2)

您可以检查数组的count,如果它等于0,则抛出错误:

<?php

   if(isset($_POST['p_image'])) { 
      if(!(count($_POST['p_image']))) {
          //throw error here...
      }
   } else {
     //throw another error here...
   }
?>

答案 1 :(得分:0)

<?php

   if(!isset($_POST['p_image'])) { 

          //failure messgae

   }
?>