我有一个输入和输入文件很少的表单。 我想检查文件输入是否为空。 如果它是空的,请不要尝试上传,如果不是,则尝试上传。
我试过这样的事情:
$upld_file = $this->upload->data();
if(!empty($upld_file))
{
//Upload file
}
答案 0 :(得分:6)
你使用codeigniter的文件上传器类...并在条件语句中调用$this->upload->do_upload();
并检查它是否为真。
<?php
if ( ! $this->upload->do_upload()){
$error = array('error' => $this->upload->display_errors());
$this->load->view('upload_form', $error);
}
else{
$data = array('upload_data' => $this->upload->data());
$this->load->view('upload_success', $data);
}
user_guide详细解释了这一点: http://codeigniter.com/user_guide/libraries/file_uploading.html
然而,
如果你已经死了,检查一个文件是否已被“上传”又名..提交之前你打电话给这个班级(不知道为什么会这样)。您可以访问PHP $_FILES
超级全局..并使用条件来检查大小是否为&gt; 0
http://www.php.net/manual/en/reserved.variables.files.php
更新2:这是实际工作代码,我自己使用CI 2.1在头像上传器上使用它
<?php
//Just in case you decide to use multiple file uploads for some reason..
//if not, take the code within the foreach statement
foreach($_FILES as $files => $filesValue){
if (!empty($filesValue['name'])){
if ( ! $this->upload->do_upload()){
$error = array('error' => $this->upload->display_errors());
$this->load->view('upload_form', $error);
}else{
$data = array('upload_data' => $this->upload->data());
$this->load->view('upload_success', $data);
}
}//nothing chosen, dont run.
}//end foreach
答案 1 :(得分:0)
可能需要更多信息。但基本上,使用codeigniter上传类可以这样做:
$result = $this->upload->do_upload();
if($result === FALSE)
{
// handle error
$message = $this->upload->display_errors();
}
else
{
// continue
}
codeigniter中有很多功能,可能不需要在这里重新发明轮子。