ZendForm:将图片移动到文件夹中

时间:2016-10-04 13:19:39

标签: php zend-framework zend-framework2 zend-form

我正在使用ZF2和Zend Form开展项目。我想在用户个人资料中添加头像。

问题是我只获取文件名并将其保存在数据库中。我想将它插入一个文件夹,这样我就可以得到它并显示它。表格的其余部分正在运作。

我的猜测是我必须从$ FILES获取信息,但我不知道如何做到这一点。我已阅读文档但无法看到如何将其应用于我的项目。

提前谢谢!

这是我的控制器动作

public function signinAction()
    {
        $this->em = $this->getServiceLocator()->get('doctrine.entitymanager.orm_default');

        $form = new SignupForm($this->em);

        $model = new ViewModel(array("form" => $form));

        $url = $this->url()->fromRoute("signin");
        $prg = $this->prg($url, true);

        if($prg instanceof \Zend\Http\PhpEnvironment\Response){
           return $prg;
        }
        else if($prg === false){
           return $model;
        }

        $user = new User();
        $form->bind($user) ;
        $form->setData($prg) ;

        if($form->isValid()){
            $bcrypt = new Bcrypt() ;
            $pwd = $bcrypt->create($user->getPassword());
            $user->setPassword($pwd);
            $this->em->persist($user) ;
            $this->em->flush() ;

            return $this->redirect()->toRoute('login');
        }

        return $model ;
    }

这是我的表单文件:

class SignupForm extends Form 
{
    private $em = null;

    public function __construct($em = null) {
        $this->em = $em;
        parent::__construct('frm-signup');

        $this->setAttribute('method', 'post');
        $this->setHydrator(new DoctrineEntity($this->em, 'Application\Entity\User'));

        //Other fields
         ...

        //File
        $this->add(array(
            'type' => "File",
            'name' => 'avatar',
            'attributes' => array(
                'value' => 'Avatar',
            ),     
        ));    

        //Submit
         ...         
    }   
}

我认为的形式是:

        $form = $this->form;         
         echo $this->form()->openTag($form);
         //other formRow
         echo $this->formFile($form->get('avatar')); 
         echo $this->formSubmit($form->get('submit'));
         echo $this->form()->closeTag();

1 个答案:

答案 0 :(得分:1)

有两件事你可以看到让你的头像工作:

  1. 使用Gravatar视图帮助程序(使用自动将图像链接到电子邮件地址的gravatar.com服务)
    • 有关使用gravatar服务的文档可以在 here
    • 找到
  2. 使用ZF2随附的文件上传类自行上传图片:
    • 文件上传的表单类可以在 here
    • 找到
    • 输入过滤器类文档可以在 here
    • 找到
  3. 如果您遵循这些文档,您应该能够管理您想要的内容。

    注意:特别检查输入过滤器文档中示例中the Zend\Filter\File\RenameUpload filter的使用情况。此过滤器将上传的头像文件重命名/移动到所需位置。