11

Zend Framework 1.9.6 を使用しています。結末を除けば、ほぼ理解できたと思います。これは私がこれまでに持っているものです:

形:

<?php

class Default_Form_UploadFile extends Zend_Form
{
    public function init()
    {
        $this->setAttrib('enctype', 'multipart/form-data');
        $this->setMethod('post');

        $description = new Zend_Form_Element_Text('description');
        $description->setLabel('Description')
            ->setRequired(true)
            ->addValidator('NotEmpty');
        $this->addElement($description);

        $file = new Zend_Form_Element_File('file');
        $file->setLabel('File to upload:')
            ->setRequired(true)
            ->addValidator('NotEmpty')
            ->addValidator('Count', false, 1);
        $this->addElement($file);

        $this->addElement('submit', 'submit', array(
            'label'    => 'Upload',
            'ignore'   => true
        ));
    }
}

コントローラ:

public function uploadfileAction()
{
    $form = new Default_Form_UploadFile();
    $form->setAction($this->view->url());

    $request = $this->getRequest();

    if (!$request->isPost()) {
        $this->view->form = $form;
        return;
    }

    if (!$form->isValid($request->getPost())) {
        $this->view->form = $form;
        return;
    }

    try {
        $form->file->receive();
        //upload complete!
        //...what now?
        $location = $form->file->getFileName();
        var_dump($form->file->getFileInfo());
    } catch (Exception $exception) {
        //error uploading file
        $this->view->form = $form;
    }
}

今、私はファイルで何をしますか? /tmpデフォルトで私のディレクトリにアップロードされています。明らかに、それは私がそれを維持したい場所ではありません。アプリケーションのユーザーがダウンロードできるようにしたい。つまり、アップロードしたファイルをアプリケーションのパブリック ディレクトリに移動し、ファイル名をデータベースに保存して、URL として表示できるようにする必要があると考えています。

または、これを最初にアップロード ディレクトリとして設定します (ただし、以前にアップロードしようとしたときにエラーが発生しました)。

以前にアップロードされたファイルを操作したことがありますか? 私が取るべき次のステップは何ですか?

解決:

アップロードしたファイルをdata/uploads(アプリケーションのすべてのバージョンからアクセスできるようにするために、アプリケーションの外部のディレクトリへのシンボリック リンクです) に配置することにしました。

# /public/index.php
# Define path to uploads directory
defined('APPLICATION_UPLOADS_DIR')
    || define('APPLICATION_UPLOADS_DIR', realpath(dirname(__FILE__) . '/../data/uploads'));

# /application/forms/UploadFile.php
# Set the file destination on the element in the form
$file = new Zend_Form_Element_File('file');
$file->setDestination(APPLICATION_UPLOADS_DIR);

# /application/controllers/MyController.php
# After the form has been validated...
# Rename the file to something unique so it cannot be overwritten with a file of the same name
$originalFilename = pathinfo($form->file->getFileName());
$newFilename = 'file-' . uniqid() . '.' . $originalFilename['extension'];
$form->file->addFilter('Rename', $newFilename);

try {
    $form->file->receive();
    //upload complete!

    # Save a display filename (the original) and the actual filename, so it can be retrieved later
    $file = new Default_Model_File();
    $file->setDisplayFilename($originalFilename['basename'])
        ->setActualFilename($newFilename)
        ->setMimeType($form->file->getMimeType())
        ->setDescription($form->description->getValue());
    $file->save();
} catch (Exception $e) {
    //error
}
4

3 に答える 3

13

デフォルトでは、ファイルはシステムの一時ディレクトリにアップロードされます。つまり、次のいずれかを行います。

  • move_uploaded_fileファイルを別の場所に移動するために使用し、
  • または、Zend Framework がファイルを移動するディレクトリを構成します。フォーム要素には、setDestinationそのために使用できるメソッドが必要です。

2番目の点については、マニュアルに例があります:

$element = new Zend_Form_Element_File('foo');
$element->setLabel('Upload an image:')
        ->setDestination('/var/www/upload')
        ->setValueDisabled(true);

(しかし、そのページを読んでください:他にも役立つ情報があります)

于 2009-12-09T20:23:43.437 に答える
3

ファイルを公開ディレクトリに移動すると、誰でもそのファイルへのリンクを他の人に送信でき、誰がファイルにアクセスできるかを制御できなくなります。

代わりに、ファイルを DB に longblob として格納し、Zend Framework を使用して、ユーザーがコントローラー/アクションを介してファイルにアクセスできるようにすることができます。これにより、独自の認証とユーザー許可ロジックをファイルへのアクセスにラップできます。

データベースに保存するには、/tmp ディレクトリからファイルを取得する必要があります。

// I think you get the file name and path like this:
$data = $form->getValues(); // this makes it so you don't have to call receive()
$fileName = $data->file->tmp_name; // includes path
$file = file_get_contents($fileName);

// now save it to the database. you can get the mime type and other
// data about the file from $data->file. Debug or dump $data to see
// what else is in there

表示用のコントローラーでのアクションには、承認ロジックがあり、データベースから行をロードします。

// is user allowed to continue?
if (!AuthenticationUtil::isAllowed()) {
   $this->_redirect("/error");
}

// load from db
$fileRow = FileUtil::getFileFromDb($id); // don't know what your db implementation is

$this->view->fileName = $fileRow->name;
$this->view->fileNameSuffix = $fileRow->suffix;
$this->view->fileMimeType = $fileRow->mime_type;
$this->view->file = $fileRow->file;

次に、ビューで:

<?php
header("Content-Disposition: attachment; filename=".$this->fileName.".".$this->fileNameSuffix);
header('Content-type: ".$this->fileMimeType."');
echo $this->file;
?>
于 2009-12-09T22:45:37.170 に答える
0
 $this->setAction('/example/upload')->setEnctype('multipart/form-data');
 $photo = new Zend_Form_Element_File('photo');
 $photo->setLabel('Photo:')->setDestination(APPLICATION_PATH ."/../public/tmp/upload"); 
 $this->addElement($photo);
于 2012-10-31T10:18:58.810 に答える