0

我正在使用 Laravel php 框架,并且我有一个带有 2 个上传字段的表单。字段工作正常,没有问题。.php 代码如下。

PS。对于那些不熟悉花括号的人来说,它基本上只是<?php echo .... ?>在刀片模板引擎中。

编码

{{  Form::label('upload_files', 'Lataa bändin LAVAKARTTA, esim .jpg (tiedosto      pakollinen)'); }}
{{  Form::file('upload_files', '', array('class' => 'form-field', 'form-text')); }}

{{  Form::label('upload_files_raider', 'Lataa bändin tekninen RAIDERI esim .txt (tiedosto pakollinen)'); }}
{{  Form::file('upload_files_raider', '', array('class' => 'form-field', 'form-text')); }}

提交表单后,我将内容(文件)传递到我的上传目录。

在我的控制器中,我有以下代码:

$a = $formsubmit['esiintyva_artisti'];

// if no file dont upload
// $a is used to give the filename a ending that correspons to a user

if($_FILES['image']['error'] == 0){
//if(!isset($_FILES)){
    Input::upload('upload_files', 'public/uploads', $a . '-artistin-tai-bandin-lavakartta.jpg');
};

if($_FILES['image']['error'] == 0){
//if(!isset($_FILES)){
    Input::upload('upload_files_raider', 'public/uploads', $a . '-artistin-tai-bandin-raideri.txt');
};

继承人的问题:

当我提交没有任何上传文件的表单时,我收到一个错误:

Fatal error: Call to a member function move() on a non-object in /var/www/...../laravel/input.php on line 230

提前感谢社区!

4

2 回答 2

1

错误可能来自您在未设置$_FILES['image']数组时检查它,因为您在表单中使用了upload_filesupload_files_raider。尝试使用 Input::file('upload_files') 检查上传文件:

if( !is_null(Input::file('upload_files')) ) {
    Input::upload('upload_files', 'public/uploads', $a . '-artistin-tai-bandin-lavakartta.jpg');
}

if( !is_null(Input::file('upload_files_raider')) ) {
   Input::upload('upload_files_raider', 'public/uploads', $a . '-artistin-tai-bandin-raideri.txt');
}
于 2012-08-08T13:20:01.503 回答
0

只需检查 NULL 即可轻松解决该问题,if 语句如下:

        if ($file_upload == NULL) 
    {
        return View::make('site.form')->with('message', 'Choose the file to be uploaded!');
    }
    else 
    {
        Input::upload('file_upload', 'public/uploads', $date.' '.$upload_file_name);
    }
于 2012-08-13T12:33:28.860 回答