kohana/php 解析 $_FILES 向量
我想解析 $_files 向量以便进行多次上传。 我尝试这样:
for($i=0; $i < count($_FILES['product_image']);$i++){PRINT_R($_FILES['product_image'][$i]);
但它给了我错误:未定义的偏移量:0 in /Users....等,然后对于1、3等也是如此。 我的形式是:三个字段:
<input id="product_image" type="file" name="product_image[]" >
<input id="product_image" type="file" name="product_image[]" >
<input id="product_image" type="file" name="product_image[]" >
我想知道我错在哪里?为什么我不能解析 $_files 向量?
i want to parse a $_files vector in order to make a multiple upload.
i try like this:
for($i=0; $i < count($_FILES['product_image']);$i++){PRINT_R($_FILES['product_image'][$i]);
but it gives me the error: Undefined offset: 0 in /Users.... etc then the same for 1, 3, etc.
in the form i have: three fields:
<input id="product_image" type="file" name="product_image[]" >
<input id="product_image" type="file" name="product_image[]" >
<input id="product_image" type="file" name="product_image[]" >
i wonder where am i wrong? wht can't i parse the $_files vector?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尝试过使用 foreach 循环吗?
请参阅PHP 站点上文件上传示例 3 :
编辑:
也许你的第一个循环可以像这样工作:
Did you try using a foreach loop ?
See Example 3 for file upload on PHP site:
EDIT:
Maybe your first loop could work like this: