在我的index.php文件中,我得到的代码是跟踪$ _FILE,但好像上传了一个pic / jpeg / images文件时,返回的结果是'array(0){}'。我是否需要使用smarty的方法来分配输入文件的方法?
var_dump($_FILES);
我的photoupload.tpl
<form action="index.php?view=photoupload" method="post" enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file" name="file" id="file">
<input class="btn_name" type="submit" name="submit" value="Submit">
</form>
答案 0 :(得分:0)
不,你没必要,这是我当前项目的一部分,我和smarty一起工作:
<form action="upload_contract.php" enctype="multipart/form-data" method="post">
...
<div class="row">
<div class="large-5 columns">
<label for="upload">Dateiupload:</label><span><input type="file" id="upload" name="upload"></span>
</div>
</div>
没有其他方法,这个工作正常。