在将数据上传到数据库之前,如何检查数组输入类型文件是否为空。如果有一个空显示任何用户理解并且不更新数据的内容。
这是示例代码html
<h3>Extra profile information</h3>
<table class="form-table">
<tr>
<th><label for="Upload">Upload</label></th>
<td>
<form action="" method="post">
<input name="profile_photo[]" type="file" value="" />
<input name="profile_photo[]" type="file" value="" />
<input name="profile_photo[]" type="file" value="" />
<br/>
</form>
</td>
</table>
我曾经使用 $x=$_GET['profile_photo']; 并回显 $x; 在上传到数据库之前,它返回空或 null。