dongshiqin1352 2010-07-19 06:32
浏览 13
已采纳

如何在php中验证图像数组

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

i need that user upload atleast one image and if it doesn't it show error..

  • 写回答

2条回答 默认 最新

  • doujuchuan9915 2010-07-19 06:35
    关注

    You can check the count of the array, and if it's equal to 0, then throw an error:

    <?php
    
       if(isset($_POST['p_image'])) { 
          if(!(count($_POST['p_image']))) {
              //throw error here...
          }
       } else {
         //throw another error here...
       }
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 基于决策树的数字信号处理,2ask 2psk 2fsk的代码,检查下报错的原因
  • ¥20 python作业求过程
  • ¥15 wincc已组态的变量过多
  • ¥60 如图:直线与椭圆X轴平行,求直线与椭圆任意一点的相切坐标计算公式
  • ¥50 如何用python使用opencv里的cv::cudacodec::VideoWriter函数对视频进行GPU硬编码
  • ¥100 c#solidworks 二次开发 工程图自动标边线法兰 等折弯尺寸怎么标
  • ¥15 halcon DrawRegion 提示错误
  • ¥15 FastAPI Uvicorn启动显示404
  • ¥15 centos7.9脚本,怎么排除特定的访问记录
  • ¥15 关于#Django#的问题:我的静态文件呢?