php - FuelPHP 的简单文件上传

标签 php file-upload upload fuelphp

有人有使用 FuelPHP 将一系列文件上传到 Web 服务器的经验吗?

我当前的设置将内容从表单添加到数据库,但我也想在此时处理图像 - 因此在提交表单时基本上将它们移动到我的网络服务器。

这很简单吗?

我的 Controller 中有“action_add()”方法,但不确定如何更新它以循环遍历所有文件字段并移动文件。

public function action_add()
    {
        $val = Model_Article::validate('add_article');

        if ($val->run())
        {
            $status = (Input::post('save_draft') ? 0 : 1);

            if ( ! $val->input('category_id'))
            {
                $category_id = null;
            }
            else
            {
                $category_id = $val->validated('category_id');
            }

            $article = new Model_Article(array(
                'user_id' => $this->user_id,
                'category_id' => $category_id,
                'title' => $val->validated('title'),
                'body' => $val->validated('body'),
                'published' => $status,
            ));

            if ($article->save())
            {
                Session::set_flash('success', 'Article successfully added.');
            }
            else
            {
                Session::set_flash('error', 'Something went wrong, '.
                    'please try again!');
            }

            Response::redirect('articles/add');
        }

        $this->template->title = 'Add Article';
        $this->template->content = View::forge('articles/add')
            ->set('categories', Model_Category::find('all'), false)
            ->set('val', Validation::instance('add_article'), false);
    }

我的表格:

<h2>Add an Article</h2>
<p>Publish a new article by filling the form below.</p>

<div class="options">
    <div class="option">
            <?php echo Html::anchor('articles', 'View Articles'); ?>
    </div>
    <div class="option">
        <?php echo Html::anchor('categories/add', 'Add a Category'); ?>
    </div>
</div>

<?php echo $val->show_errors(); ?>
<?php echo Form::open(array('enctype' => 'multipart/form-data')); ?>

<?php $select_categories = array(null => 'Uncategorized'); ?>
<?php foreach ($categories as $category): ?>
<?php $select_categories[$category->id] = $category->name; ?>
<?php endforeach; ?>

<div class="input select">
    <?php echo Form::label('Category', 'category_id'); ?>
    <?php echo Form::select('category_id', e($val->input('category_id')), 
        $select_categories); ?>
</div>

<div class="input text required">
    <?php echo Form::label('Title', 'title'); ?>
    <?php echo Form::input('title', e($val->input('title')), 
        array('size' => '30')); ?>
</div>

<div class="input textarea required">
    <?php echo Form::label('Body', 'body'); ?>
    <?php echo Form::textarea('body', e($val->input('body')), 
        array('rows' => 4, 'cols' => 40)); ?>
</div>

<div class="input textarea required">
    <?php echo FORM::file('filename'); ?> 
</div>

<div class="input submit">
    <?php echo Form::submit('add_article', 'Publish'); ?>
    <?php echo Form::submit('save_draft', 'Save Draft'); ?>
</div>

<?php echo Form::close(); ?>

非常感谢您的指点。

最佳答案

好的,我可以给你一些指导。

第一fuelphp upload documentation

如果有错别字,希望对您有所帮助

public function action_add()
{
$val = Model_Article::validate('add_article'); //<-- maybe its just me but I never saw any similar to this in fuelphp sorry about this if I'm wrong

// if your form validation is okay than continue with everyhing else
if ($val->run())
{
    $article = Model_Article::forge();
    // Custom configuration for this upload
    $config = array(
        'path' => DOCROOT.DS.'foldername/tomove/your/images',
        'randomize' => true,
        'ext_whitelist' => array('img', 'jpg', 'jpeg', 'gif', 'png'),
    );

    Upload::process($config);

    // if a valid file is passed than the function will save, or if its not empty
    if (Upload::is_valid())
    {
        // save them according to the config
        Upload::save();

       //if you want to save to tha database lets grab the file name
        $value = Upload::get_files();  
        $article->your_file_input_name = $value[0]['saved_as'];
     } 

    $status = (Input::post('save_draft') ? 0 : 1);

    if ( ! $val->input('category_id'))
    {
        $category_id = null;
    }
    else
    {
        $category_id = $val->validated('category_id');
    }

         $article->user_id = $this->user_id;
         $article->category_i = $category_id;
         $article->title = $val->validated('title');
         $article->body = $val->validated('body');
         $article->published = $status;


    if ($article->save())
    {
        Session::set_flash('success', 'Article successfully added.');
    }
    else
    {
        Session::set_flash('error', 'Something went wrong, '.
            'please try again!');
    }

    Response::redirect('articles/add');
}

$this->template->title = 'Add Article';
$this->template->content = View::forge('articles/add')
    ->set('categories', Model_Category::find('all'), false)
    ->set('val', Validation::instance('add_article'), false);
}

关于php - FuelPHP 的简单文件上传,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13322749/

相关文章:

php - 如何在 XAMPP Windows 上安装 Redis?

php - PDO_OCI - 进入 clob 字段

jquery - 如何在 bootstrap-fileinput 插件中显示进度?

PHP从上传的文本文件中读取?

php - 比较同一个表中的两个值

php - 在数据源默认值中找不到模型的 cakephp 表

file - 通过 FTP 传输数据到文件夹名称包含空格

http - 在 Mule 中使用 Jersey 实现文件上传时出现不支持的媒体类型 (415) 错误

ruby-on-rails - 无法使用 ruby​​ on rails 和 paperclip gem 上传 zip 文件

java - 用于拖放上传的小程序